/* Stile per Moglie & Marito - ItalyAmami */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    padding-top: 80px; /* Spazio per top navigation */
    padding-bottom: 80px; /* Spazio per bottom navigation */
}

.main-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 160px); /* Altezza totale meno le due barre */
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 i {
    color: #e74c3c;
    margin-right: 15px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f8f9fa;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #e9ecef;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #f8f9fa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Section */
.categories-section {
    margin-bottom: 60px;
}

.categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #e74c3c;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-count {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

/* How to Play Section */
.how-to-play {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.how-to-play h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.how-to-play h2 i {
    color: #e74c3c;
    margin-right: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: #e74c3c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #e9ecef;
    font-size: 1rem;
    line-height: 1.5;
}

/* Social Features */
.social-features {
    margin-bottom: 40px;
}

.social-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.social-features h2 i {
    color: #e74c3c;
    margin-right: 15px;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

.social-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.social-card p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    color: #e9ecef;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Ridotto per tablet */
        padding-bottom: 70px;
    }
    
    .main-content {
        min-height: calc(100vh - 140px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .social-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px; /* Ridotto per mobile */
        padding-bottom: 60px;
    }
    
    .main-content {
        padding: 10px;
        min-height: calc(100vh - 120px);
    }
    
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .how-to-play {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 40px 15px;
    }
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease-out;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

/* Bottoni Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    justify-content: center;
}

.hero-btn.primary-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 2px solid #e74c3c;
}

.hero-btn.primary-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Pubblicità Domande Unificata */
.domande-unified {
    background: linear-gradient(135deg, #e74c3c, #c0392b, #8e44ad);
    border-radius: 25px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.domande-main {
    padding: 40px;
    text-align: center;
}

.domande-unified::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

/* Preview delle domande */
.questions-preview {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.questions-preview i {
    font-size: 3rem;
    color: #f39c12;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.floating-questions {
    position: absolute;
    width: 100%;
    height: 100%;
}

.question-bubble {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.bubble-1 {
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 10px;
    left: 10px;
    animation-delay: 0.5s;
}

.bubble-3 {
    top: 50%;
    left: -15px;
    animation-delay: 1s;
}

.bubble-4 {
    top: 50%;
    right: -15px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

/* Caratteristiche Domande Integrate */
.domande-features-integrated {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 0 25px 25px;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.domande-features-integrated h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pubblicità Kamasutra Unificata */
.kamasutra-unified {
    background: linear-gradient(135deg, #8e44ad, #9b59b6, #e74c3c);
    border-radius: 25px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.kamasutra-main {
    padding: 40px;
    text-align: center;
}

.kamasutra-ad::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header della pubblicità */
.ad-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.ad-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); }
    to { box-shadow: 0 4px 25px rgba(243, 156, 18, 0.6); }
}

.ad-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f39c12;
    font-weight: bold;
}

.ad-rating i {
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.ad-rating span {
    margin-left: 10px;
    color: white;
    font-size: 1.1rem;
}

/* Contenuto principale */
.ad-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.ad-image {
    position: relative;
}

.wheel-preview {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.wheel-preview i {
    font-size: 3rem;
    color: #f39c12;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.spinning-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid #f39c12;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ad-text {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

.ad-text h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ad-subtitle {
    color: #f8f9fa;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ad-description {
    color: #e8f4f8;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Features migliorate */
.ad-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8f4f8;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: #2ecc71;
    font-size: 1.1rem;
}

/* Testimonial */
.ad-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #f39c12;
    backdrop-filter: blur(10px);
}

.testimonial-content i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #f8f9fa;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Azioni e statistiche */
.ad-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ad-button.primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    border: 2px solid #f39c12;
    min-width: 200px;
}

.ad-button.primary:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.6);
}

.ad-button.primary small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.ad-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ad-stats .stat {
    text-align: center;
    color: white;
}

.ad-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #f39c12;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.ad-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer della pubblicità */
.ad-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-badges, .age-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e8f4f8;
    font-size: 0.9rem;
}

.security-badges i {
    color: #2ecc71;
}

.age-warning i {
    color: #f39c12;
}

/* Caratteristiche Kamasutra Integrate */
.kamasutra-features-integrated {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 0 25px 25px;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.kamasutra-features-integrated h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.8s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1s; }

.feature-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.feature-content p {
    color: #e8f4f8;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Pubblicità Speciale */
.special-ad {
    background: linear-gradient(135deg, #2c3e50, #34495e, #e74c3c);
    border-radius: 25px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.special-ad::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.special-ad-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.special-ad-icon {
    font-size: 4rem;
    color: #f39c12;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        text-shadow: 0 0 30px rgba(243, 156, 18, 1);
    }
}

.special-ad-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.special-ad-text h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-ad-text p {
    color: #e8f4f8;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.special-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.special-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e8f4f8;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.special-features i {
    color: #2ecc71;
}

.special-ad-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 35px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    border: 2px solid #f39c12;
    min-width: 180px;
    position: relative;
    z-index: 2;
}

.special-ad-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.6);
}

.special-ad-btn i {
    font-size: 1.5rem;
}

/* Responsive per le sezioni unificate */
@media (max-width: 768px) {
    .domande-unified, .kamasutra-unified {
        margin: 30px 0;
    }
    
    .domande-main, .kamasutra-main {
        padding: 30px 20px;
    }
    
    .domande-features-integrated, .kamasutra-features-integrated {
        padding: 25px 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .domande-features-integrated h2, .kamasutra-features-integrated h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .questions-preview {
        width: 100px;
        height: 100px;
    }
    
    .questions-preview i {
        font-size: 2.5rem;
    }
    
    .question-bubble {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

/* Bottoni Finali */
.final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.final-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    justify-content: center;
}

.final-btn.primary-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 2px solid #e74c3c;
}

.final-btn.primary-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.final-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.final-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive per i nuovi elementi */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .ad-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ad-text {
        text-align: center;
        min-width: auto;
    }
    
    .ad-features {
        justify-content: center;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .kamasutra-ad {
        padding: 20px;
    }
    
    .ad-text h3 {
        font-size: 1.8rem;
    }
    
    .ad-header {
        flex-direction: column;
        text-align: center;
    }
    
    .ad-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ad-text {
        text-align: center;
        min-width: auto;
    }
    
    .ad-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ad-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ad-stats {
        justify-content: center;
    }
    
    .ad-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .wheel-preview {
        width: 100px;
        height: 100px;
    }
    
    .wheel-preview i {
        font-size: 2.5rem;
    }
}
