 * {
                  margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
            color: #ffffff;
        }

        /* Header Styles */
        header {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #FF6800;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
            border-radius: 8px;
        }

        .logo-text {
            color: #FFA600;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-desktop {
            display: flex;
            gap: 30px;
        }

        .nav-desktop a {
            color: #FFA600;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .nav-desktop a:hover {
            color: #FF6800;
            background: rgba(255, 104, 0, 0.1);
        }

        .nav-desktop a.active {
            color: #FF6800;
            background: rgba(255, 104, 0, 0.2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 8px;
            background: transparent;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #FFA600;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid #FF6800;
            flex-direction: column;
            padding: 20px;
            gap: 15px;
        }

        .nav-mobile.active {
            display: flex;
        }

        .nav-mobile a {
            color: #FFA600;
            text-decoration: none;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .nav-mobile a:hover, .nav-mobile a.active {
            color: #FF6800;
            background: rgba(255, 104, 0, 0.1);
            border-color: #FF6800;
        }

        /* Breadcrumb */
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            font-size: 0.9rem;
            color: #FFA600;
        }

        .breadcrumb a {
            color: #FF6800;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .container {
            width: 100%;
            max-width: 500px;
            text-align: center;
        }

        .logo-main {
            margin-bottom: 30px;
        }

        .logo-main h1 {
            font-size: clamp(1.5rem, 8vw, 2rem);
            color: #FFA600;
            text-shadow: 0 5px 15px rgba(255, 166, 0, 0.3);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .logo-main p {
            color: rgba(255, 166, 0, 0.8);
            font-size: clamp(1rem, 4vw, 1.2rem);
        }

        .choice-container {
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 30px);
            box-shadow: 0 10px 30px rgba(255, 104, 0, 0.2);
            border: 2px solid #FF6800;
            margin: 0 auto;
        }

        .choice-title {
            color: #FFA600;
            font-size: clamp(1.2rem, 5vw, 1.5rem);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .choice-btn {
            padding: clamp(15px, 4vw, 20px) clamp(20px, 5vw, 30px);
            border: none;
            border-radius: 15px;
            font-size: clamp(1.1rem, 4vw, 1.3rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            min-height: 60px;
        }

        .choice-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 166, 0, 0.2), transparent);
            transition: 0.5s;
        }

        .choice-btn:hover::before {
            left: 100%;
        }

        .truth-btn {
            background: linear-gradient(135deg, #FF6800, #FF8526);
            color: #1A1A1A;
            box-shadow: 0 5px 15px rgba(255, 104, 0, 0.4);
            border: 2px solid #FFA600;
        }

        .truth-btn:hover, .truth-btn:active {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 104, 0, 0.6);
        }

        .dare-btn {
            background: linear-gradient(135deg, #FFA600, #FFB733);
            color: #1A1A1A;
            box-shadow: 0 5px 15px rgba(255, 166, 0, 0.4);
            border: 2px solid #FF6800;
        }

        .dare-btn:hover, .dare-btn:active {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 166, 0, 0.6);
        }

        .btn-icon {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
        }

        /* Wheel Screen Styles */
        .wheel-screen {
            display: none;
            width: 100%;
            max-width: 800px;
            text-align: center;
            position: relative;
        }

        .back-btn {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255, 104, 0, 0.2);
            border: 2px solid #FFA600;
            color: #FFA600;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            z-index: 100;
        }

        .back-btn:hover, .back-btn:active {
            background: rgba(255, 104, 0, 0.3);
            transform: scale(1.05);
        }

        .wheel-container {
            position: relative;
            width: min(90vw, 400px);
            height: min(90vw, 400px);
            margin: 0 auto 25px;
        }

        .wheel-canvas {
            background: #1A1A1A;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(255, 104, 0, 0.3);
            border: clamp(5px, 2vw, 8px) solid #FF6800;
            width: 100%;
            height: 100%;
        }

        .pointer {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(30px, 8vw, 40px);
            height: clamp(45px, 12vw, 60px);
            z-index: 10;
            filter: drop-shadow(0 0 5px rgba(255, 104, 0, 0.7));
        }

        .spin-btn {
            background: linear-gradient(135deg, #FF6800, #FF8526);
            color: #1A1A1A;
            border: 2px solid #FFA600;
            padding: clamp(12px, 3vw, 15px) clamp(30px, 6vw, 40px);
            font-size: clamp(16px, 4vw, 18px);
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255, 104, 0, 0.4);
            margin: 15px 0;
            min-height: 50px;
            min-width: 150px;
        }

        .spin-btn:hover, .spin-btn:active {
            transform: translateY(-2px);
            box-shadow: 0 7px 18px rgba(255, 104, 0, 0.6);
            background: linear-gradient(135deg, #FF8526, #FF6800);
        }

        .spin-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .result {
            margin-top: 15px;
            font-size: clamp(18px, 5vw, 24px);
            font-weight: bold;
            text-align: center;
            min-height: 40px;
            padding: clamp(15px, 4vw, 20px);
            border-radius: 15px;
            background: rgba(255, 104, 0, 0.1);
            backdrop-filter: blur(10px);
            width: 90%;
            max-width: 400px;
            margin: 15px auto;
            border: 2px solid #FFA600;
            color: #FFA600;
            word-wrap: break-word;
        }

        /* Info Section for SEO */
        .info-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }

        .info-section h2 {
            color: #FFA600;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .info-content {
            background: rgba(26, 26, 26, 0.8);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #FF6800;
        }

        .info-content h3 {
            color: #FFA600;
            margin: 20px 0 10px 0;
        }

        .info-content p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        /* Footer Styles */
        footer {
            background: rgba(26, 26, 26, 0.95);
            border-top: 2px solid #FF6800;
            padding: 30px 0;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section h3 {
            color: #FFA600;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 166, 0, 0.8);
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #FF6800;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 104, 0, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .social-links a:hover {
            background: rgba(255, 104, 0, 0.2);
            border-color: #FF6800;
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 104, 0, 0.3);
            color: rgba(255, 166, 0, 0.6);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-out;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header-container {
                padding: 0 15px;
            }

            .logo img {
                height: 35px;
            }

            .logo-text {
                font-size: 1.3rem;
            }

            .main-content {
                padding: 20px 15px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .info-section {
                margin: 20px auto;
            }

            .info-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0;
            }
            
            .main-content {
                padding: 15px 10px;
            }
            
            .choice-container {
                padding: 20px 15px;
            }
            
            .buttons {
                gap: 12px;
            }
            
            .choice-btn {
                min-height: 55px;
            }
            
            .back-btn {
                top: 5px;
                left: 5px;
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 360px) {
            .logo-main h1 {
                font-size: 2rem;
            }
            
            .choice-btn {
                font-size: 1rem;
                padding: 12px 15px;
            }
            
            .wheel-container {
                width: 95vw;
                height: 95vw;
            }
        }

        /* SEO Optimizations */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Performance Optimizations */
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* FAQ Section Styles */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-container h2 {
    text-align: center;
    color: #FFA600;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 2px solid #FF6800;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFA600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 104, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #FFA600;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 104, 0, 0.1);
    color: #FF6800;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 104, 0, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer div {
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: rgba(255, 166, 0, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .faq-container h2 {
        font-size: 1.7rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer div {
        padding: 0 20px 18px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .faq-answer div {
        padding: 0 18px 15px 18px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}