*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
     background: linear-gradient(145deg, #0b1120 0%, #111827 100%);
            font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, 'Inter', sans-serif;
            line-height: 1.5;
            scroll-behavior: smooth;
}

/* Header */
header{
    background: linear-gradient(135deg, #F86663, #FD867E);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    max-width:100px;
    display:block;
}

/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
    align-items:center;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    font-size:18px;
    font-weight:600;
}

/* Dropdown */
.has-dropdown{
    position:relative;
}

.dropdown-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:5px;
}

.dropdown{
    position:absolute;
    top:45px;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:none;
    z-index:100;
}

.dropdown a{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;
    font-size: 16px;
    font-weight: 500;
}

.dropdown a:hover{
    background:#f7f7f7;
}

/* Desktop - dropdown only on click, not hover */
@media(min-width:992px){
    .dropdown.show{
        display:block;
    }
}

/* Header Buttons */
.header-btns{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-login-btn,
.header-register-btn{
    text-decoration:none;
    padding:12px 30px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:all .3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* Login */
.header-login-btn{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.header-login-btn:hover{
    background:#fff;
    color:#F86663;
}

/* Register */
.header-register-btn{
    background:#fff;
    color:#F86663;
    border:2px solid #fff;
}

.header-register-btn:hover{
    background:#FD867E;
    border-color:#FD867E;
    color:#fff;
}

/* Mobile */
@media(max-width:991px){

    .header-btns{
        width:100%;
        flex-direction:column;
    }

    .header-login-btn,
    .header-register-btn{
        width:100%;
    }

}

/* Mobile Toggle */
.menu-toggle{
    display:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;
}

/* Mobile */
@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#F86663;
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
        gap:20px;
        z-index:1000;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-links{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .has-dropdown{
        width:100%;
    }

    .dropdown{
        position:static;
        width:100%;
        background:rgba(255,255,255,.12);
        box-shadow:none;
        margin-top:10px;
        display:none;
    }

    .dropdown.show{
        display:block;
    }

    .dropdown a{
        color:#fff;
        padding:14px 20px;
    }

    
    #arrow{
        transition:transform 0.2s;
        display:inline-block;
    }
}

   
     /* Hero Section */
.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 15px;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.hero-container{
    max-width:1400px;
    width:100%;
    margin:auto;
}

.hero-card{
    background:rgba(18,25,45,.75);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
    padding:40px 30px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

/* Bonus Badge */
.bonus-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    background:linear-gradient(135deg,#FFB347,#FF8C2E);
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

/* Heading */
.hero-card h1{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:15px;
    background:linear-gradient(135deg,#fff,#FED7AA);
    -webkit-background-clip:text;
    color:transparent;
}

.hero-description{
    margin:0 auto 10px;
    font-size:17px;
    line-height:1.7;
    color:#e2e8f0;
    padding:0;
}





/* Button */
.login-btn-hero{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:linear-gradient(135deg,#F86663,#FD867E);
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:.3s;
    margin: 30px 0px;
}

.login-btn-hero:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(248,102,99,.35);
}

/* Mobile */
@media(max-width:768px){

    .hero-card{
        padding:30px 20px;
        border-radius:25px;
    }

    .hero-card h1{
        font-size:28px;
    }

    .hero-description{
        font-size:15px;
        line-height:1.6;
    }

    .login-highlight strong{
        font-size:17px;
    }

    .login-highlight span{
        font-size:14px;
    }

    .login-btn-hero{
        width:100%;
        font-size:16px;
        padding:14px 20px;
    }
}


        .content-wapper {
            max-width: 1400px;
            margin: 20px auto;
            background: rgba(18, 25, 45, 0.75);
            backdrop-filter: blur(12px);
            border-radius: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 2rem;
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
        }

        @media (min-width: 768px) {
            .content-wapper {
                padding: 2.8rem 3rem;
            }
        }

        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-top: 1.8rem;
            margin-bottom: 1rem;
            color: #FED7AA;
            border-left: 4px solid #F86663;
            padding-left: 1rem;
        }

        h2:first-of-type {
            margin-top: 0;
        }

        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #e0e7ff;
        }

        .highlight-badge {
            background: linear-gradient(95deg, #FFB347, #FF8C2E);
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: bold;
            color: #1e1a0c;
            margin-bottom: 1rem;
        }

        .game-list {
            background: rgba(248, 102, 99, 0.1);
            padding: 0.8rem 1.2rem;
            border-radius: 1.2rem;
            margin: 1rem 0 1.2rem 0;
            display: inline-block;
            font-weight: 500;
            border: 1px solid rgba(248, 102, 99, 0.3);
        }

        .login-btn-center {
            text-align: center;
            margin: 2rem 0 1.8rem;
        }

        .login-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(95deg, #F86663, #FD867E);
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.25rem;
            color: white;
            text-decoration: none;
            box-shadow: 0 12px 20px -8px rgba(248, 102, 99, 0.5);
            transition: all 0.25s ease;
            border: none;
        }

        .login-btn:hover {
            transform: scale(1.02);
            background: linear-gradient(95deg, #ff5754, #fe776e);
            box-shadow: 0 18px 28px -8px rgba(248, 102, 99, 0.7);
        }

    .steps-list{
    margin:30px auto;
    padding:0;
    list-style:none;
    counter-reset:step-counter;
}

.steps-list li{
    position:relative;
    background:#151d33;
    margin-bottom:16px;
    padding:18px 20px 18px 75px;
    border-radius:16px;
    border-left:5px solid #F86663;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    font-size:16px;
    line-height:1.7;
    color:#e5e7eb;
    counter-increment:step-counter;
    transition:.3s ease;
}

.steps-list li::before{
    content:counter(step-counter);
    position:absolute;
    left:20px;
    top:20px; /* center ki jagah top */
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg,#F86663,#FD867E);
    color:#fff;
    font-weight:700;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.steps-list li:hover{
    background:#1c2742;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(248,102,99,.15);
}

.steps-list li a{
    color:#FD867E;
    text-decoration:none;
    font-weight:600;
}

.steps-list li a:hover{
    color:#fff;
}

@media(max-width:768px){

    .steps-list li{
        padding:16px 15px 16px 65px;
        font-size:15px;
        line-height:1.6;
    }

    .steps-list li::before{
        width:36px;
        height:36px;
        left:15px;
        top:15px;
        font-size:16px;
    }

}

        .note-box {
            background: rgba(248, 102, 99, 0.08);
            border-left: 4px solid #F86663;
            padding: 1rem 1.2rem;
            border-radius: 1rem;
            margin: 1.5rem 0;
            font-style: normal;
            font-weight: 500;
            color: #FFDDAA;
        }

        hr {
            margin: 2rem 0;
            border: none;
            height: 1px;
            background: rgba(255,255,255,0.1);
        }

        .button-hint {
            text-align: center;
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: -0.5rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 600px) {
           
            h2 {
                font-size: 1.6rem;
            }
            .login-btn {
                width: 100%;
                justify-content: center;
            }
        }

           h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #FFD7A0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #e0e7ff;
            line-height: 1.6;
        }

        .problem-card {
            background: rgba(248, 102, 99, 0.06);
            border-radius: 1.2rem;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
            border: 1px solid rgba(248, 102, 99, 0.2);
            transition: all 0.2s ease;
        }

        .problem-card:hover {
            background: rgba(248, 102, 99, 0.1);
            border-color: rgba(248, 102, 99, 0.4);
        }

        .problem-number {
            display: inline-block;
            background: #F86663;
            color: white;
            font-weight: bold;
            width: 28px;
            height: 28px;
            text-align: center;
            line-height: 28px;
            border-radius: 50%;
            font-size: 0.9rem;
            margin-right: 10px;
        }

      

      

        @media (max-width: 600px) {
          
            h3 {
                font-size: 1.25rem;
            }
            .problem-card {
                padding: 1rem;
            }
        }

              /* Grid for horizontal row */
        .testimonial-row {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            scrollbar-width: thin;
        }

        .testimonial-card {
            background: rgba(248, 102, 99, 0.06);
            border-radius: 1.2rem;
            padding: 1.4rem 1.6rem;
            border: 1px solid rgba(248, 102, 99, 0.2);
            transition: all 0.25s ease;
            position: relative;
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            background: rgba(248, 102, 99, 0.1);
            border-color: rgba(248, 102, 99, 0.4);
            transform: translateY(-3px);
        }

        .player-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #FFD7A0;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .player-name::before {
            content: "⭐";
            font-size: 0.9rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: #e0e7ff;
            line-height: 1.6;
            text-align: left;
            flex: 1;
        }

        .quote-icon {
            font-size: 2rem;
            color: rgba(248, 102, 99, 0.25);
            position: absolute;
            bottom: 8px;
            right: 15px;
            font-family: serif;
            pointer-events: none;
        }

        /* For smaller screens, allow horizontal scroll but keep row */
        @media (max-width: 1000px) {
            .testimonial-row {
                flex-wrap: nowrap;
                overflow-x: auto;
            }
            .testimonial-card {
                min-width: 280px;
            }
        }

                .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .faq-item {
            background: rgba(248, 102, 99, 0.05);
            border-radius: 1.2rem;
            border: 1px solid rgba(248, 102, 99, 0.2);
            overflow: hidden;
            transition: all 0.25s ease;
        }

        .faq-item:hover {
            background: rgba(248, 102, 99, 0.08);
            border-color: rgba(248, 102, 99, 0.35);
        }

        .faq-question {
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.2);
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: rgba(248, 102, 99, 0.1);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #FFD7A0;
            margin: 0;
            letter-spacing: -0.2px;
        }

        .faq-icon {
            font-size: 1.4rem;
            color: #F86663;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            background: rgba(0, 0, 0, 0.15);
            border-top: 1px solid transparent;
        }

        .faq-answer p {
            padding: 1.2rem 0 1.5rem 0;
            margin: 0;
            font-size: 1rem;
            color: #e0e7ff;
            line-height: 1.65;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            border-top-color: rgba(248, 102, 99, 0.3);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        hr {
            margin: 2rem 0 0.5rem;
            border: none;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .footer-note {
            font-size: 0.85rem;
            text-align: center;
            color: #7e8aa2;
            margin-top: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        @media (max-width: 600px) {
            .container {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .faq-question h3 {
                font-size: 1rem;
                padding-right: 0.5rem;
            }
            .faq-question {
                padding: 1rem 1.2rem;
            }
            .faq-answer p {
                font-size: 0.9rem;
            }
        }   

        .site-footer{
     background:linear-gradient(135deg,#F86663);
    border-top:1px solid rgba(255,255,255,.08);
    padding:40px 20px;
    text-align:center;
}

.footer-container{
    max-width:1200px;
    margin:auto;
}

.footer-links{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:40px;
    margin:0 0 20px;
    padding:0;
}

.footer-links li{
    margin:0;
}

.footer-links a{
    color:#f3f4f6;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s ease;
}

.footer-links a:hover{
    color:#151515;
}

.footer-copyright{
    color:#f2f4f8;
    font-size:15px;
    margin:0;
}

.footer-copyright a{
    color:#faeb66;
    text-decoration:none;
    font-weight:600;
}

.footer-copyright a:hover{
    color:#efeded;
}

/* Mobile */
@media(max-width:768px){

    .site-footer{
        padding:30px 15px;
    }

    .footer-links{
        gap:18px;
        flex-direction:column;
    }

    .footer-links a{
        font-size:16px;
    }

    .footer-copyright{
        font-size:14px;
        line-height:1.6;
    }
}


        .content-box {
            max-width: 1400px;
            margin: 30px auto;
            background: rgba(18, 25, 45, 0.75);
            backdrop-filter: blur(12px);
            border-radius: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 2rem;
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
        }

        @media (min-width: 768px) {
            .content-box {
                padding: 2.8rem 3rem;
            }
        }

        /* ===== H1 Beautiful Design ===== */
        .page-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .page-title h1 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FFFFFF, #FED7AA, #F86663);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
            margin-bottom: 0.75rem;
            animation: shimmer 3s ease infinite;
        }

        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .title-underline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }

        .title-underline .line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #F86663, #FD867E, #FED7AA);
            border-radius: 4px;
        }

        .title-underline .dot {
            width: 10px;
            height: 10px;
            background: #F86663;
            border-radius: 50%;
            box-shadow: 0 0 8px #F86663;
        }

        .title-icon {
            font-size: 2rem;
            display: block;
            margin-top: 12px;
            letter-spacing: 8px;
        }

        @media (max-width: 600px) {
            .page-title h1 {
                font-size: 2rem;
            }
            .title-underline .line {
                width: 35px;
            }
        }

      
        .intro-highlight {
            font-size: 1.1rem;
            font-weight: 500;
            color: #FFE0AA;
            background: rgba(248, 102, 99, 0.1);
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            margin: 1rem 0 1.5rem 0;
            border-left: 3px solid #F86663;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0 1rem;
        }

        .value-card {
            background: rgba(248, 102, 99, 0.06);
            border-radius: 1.2rem;
            padding: 1.3rem 1.5rem;
            border: 1px solid rgba(248, 102, 99, 0.2);
            transition: all 0.25s ease;
        }

        .value-card:hover {
            background: rgba(248, 102, 99, 0.1);
            border-color: rgba(248, 102, 99, 0.4);
            transform: translateY(-3px);
        }

        .value-card h3 {
            margin-top: 0;
            margin-bottom: 0.7rem;
            font-size: 1.2rem;
        }

        .list-box {
            list-style: none;
            margin: 1rem 0 1rem 1rem;
        }

        .list-box li {
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
            color: #e0e7ff;
        }

        .list-box li::before {
            content: "▹";
            color: #F86663;
            position: absolute;
            left: 0;
        }

   


        @media (max-width: 600px) {
            .content-box {
                padding: 1.5rem;
            }
         
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        .img-center{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px 0;
    width:100%;
}

.img-center img{
    display:block;
    max-width: 300px;
    width:auto;
    height:auto;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

/* Mobile */
@media (max-width:768px){

    .img-center{
        margin:20px 0;
    }

    .img-center img{
        width:100%;
        max-width:500px;
    }

}

/* author */

   .author-card {
            max-width: 1300px;
            margin: 40px auto;
            background: rgba(18, 25, 45, 0.78);
            backdrop-filter: blur(14px);
            border-radius: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 2.5rem;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }

        @media (min-width: 768px) {
            .author-card {
                padding: 3.5rem;
            }
        }

        /* Author Header */
        .author-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 2rem;
        }

        .author-avatar {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #F86663;
            box-shadow: 0 0 40px rgba(248, 102, 99, 0.35);
            margin-bottom: 1.2rem;
            background: #1a2440;
        }

        .author-name {
            font-size: 2.2rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -0.5px;
        }

        .author-name span {
            background: linear-gradient(135deg, #FED7AA, #F86663);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .author-badge {
            display: inline-block;
            background: linear-gradient(95deg, #F86663, #FD867E);
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            margin-top: 0.5rem;
            letter-spacing: 0.5px;
        }

        .experience-tag {
            display: inline-block;
            background: rgba(248, 102, 99, 0.15);
            border: 1px solid rgba(248, 102, 99, 0.3);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #FED7AA;
            margin-top: 0.5rem;
        }

        /* Divider */
        .divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #F86663, #FD867E);
            margin: 0.5rem auto 1.8rem;
            border-radius: 4px;
        }

        /* Content */
        .author-content p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #e0e7ff;
            line-height: 1.8;
        }

        .author-content p:last-of-type {
            margin-bottom: 0;
        }

        .highlight-text {
            color: #FED7AA;
            font-weight: 500;
        }

        /* Footer signature */
        .author-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .author-footer .tag {
            font-size: 0.8rem;
            color: #7e8aa2;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .author-footer .tag span {
            color: #F86663;
        }

        @media (max-width: 600px) {
            .author-card {
                padding: 1.8rem;
            }
            .author-name {
                font-size: 1.6rem;
            }
            .author-avatar {
                width: 140px;
                height: 140px;
            }
            .author-footer {
                flex-direction: column;
                text-align: center;
            }
        }