*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

 body {
      font-family: 'Poppins', sans-serif;
      color: #e0e7ff;
      background: #0a0e1f;
      line-height: 1.6;
    }

/* HEADER */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:linear-gradient(90deg,#1e3a8a,#0f172a);
    padding:12px 20px;
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,.4);
}

.container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */
.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-area img{
    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
    margin-left: 20px;
}

.logo-text{
    font-size:24px;
    font-weight:800;
    color:#f59e0b;
}

/* DESKTOP NAV */
.nav-desktop{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-link{
    color:#e2e8f0;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    position:relative;
}

.nav-link:hover{
    color:#fff;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#f59e0b;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:130%;
    left:50%;
    transform:translateX(-50%);
    background:#1e3a8a;
    min-width:190px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.4);
}

.dropdown:hover .dropdown-content{
    display:block;
}

.dropdown-content a{
    display:block;
    padding:12px 15px;
    color:#fff;
    text-decoration:none;
}

.dropdown-content a:hover{
    background:#2563eb;
}

/* DESKTOP BUTTONS */
.auth-buttons{
    display:flex;
    gap:10px;
}

.btn{
    padding:9px 18px;
    border:none;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    color:white;
}

.btn-login{
    background:#22c55e;
}

.btn-register{
    background:#ef4444;
}

/* HAMBURGER */
.hamburger{
    display:none;
    font-size:32px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
}

/* MOBILE MENU */
.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(5,15,35,.98);
    padding-top:90px;
    transform:translateY(-100%);
    transition:.35s;
    z-index:999;
}

.mobile-menu.active{
    transform:translateY(0);
}

.mobile-menu a{
    display:block;
    text-align:center;
    padding:14px;
    color:white;
    text-decoration:none;
    font-size:18px;
}

.mobile-menu a:hover{
    background:rgba(255,255,255,.06);
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:35px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
}

/* MOBILE DROPDOWN */
.mobile-dropdown-content{
    display:none;
}

.mobile-dropdown-content.active{
    display:block;
}

.mobile-dropdown-content a{
    font-size:15px;
    color:#cbd5e1;
}

/* MOBILE BUTTONS */
.mobile-auth-buttons{
    display:flex;
    gap:12px;
    width:85%;
    margin:25px auto 0;
}

.mobile-btn{
    flex:1;
    text-align:center;
    padding:11px 0;
    border-radius:30px;
    text-decoration:none;
    color:white;
    font-weight:600;
}

.mobile-login{
    background:#22c55e;
}

.mobile-register{
    background:#ef4444;
}

/* RESPONSIVE */
@media(max-width:920px){

    .nav-desktop,
    .auth-buttons{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .logo-text{
        font-size:22px;
    }
}



    /* Hero Section with Background Image */
   /* === Base Styles (Mobile First) === */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 14, 31, 0.82), rgba(10, 14, 31, 0.88)),
                url('/img/Banner images/Banner Image 3.webp') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139,92,246,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.main-wapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    background: linear-gradient(90deg, #f97316, #fbbf24, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-shadow: 0 0 30px rgba(249,115,22,0.4);
    line-height: 1.2;
    margin-top: 40px;
}

h2 {
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    color: #fbbf24;
    text-align: center;
    margin: 40px 0 25px;
}

.content {
    background: rgba(15, 23, 55, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 16px;
    padding: 30px 20px;
    margin: 20px 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.strong {
    color: #fbbf24;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 0 15px;
}

.cta {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    width: auto;
    min-width: 160px;
}

.btn-login {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    color: white;
}

.btn-login:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 30px rgba(34,197,94,0.5);
}

.btn-register {
    background: linear-gradient(90deg, #ef4444, #f87171);
    color: white;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 30px rgba(239,68,68,0.5);
}

.btn-download {
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    color: white;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 30px rgba(139,92,246,0.5);
}

.tip {
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 10px;
    font-style: italic;
}

.gift-code {
    background: rgba(251,191,36,0.12);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin: 25px auto;
    max-width: 100%;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fbbf24;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(251,191,36,0.15);
}

.gift-code h2 {
    font-size: 1.8rem;
    margin: 40px 0 0px;
}

.table-section {
    margin: 40px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 58, 138, 0.4);
    border-radius: 12px;
    overflow: hidden;
    min-width: 500px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

th {
    background: rgba(59,130,246,0.25);
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.95rem;
}

td {
    font-size: 0.95rem;
}

tr:last-child td {
    border-bottom: none;
}

.highlight {
    color: #a78bfa;
    font-weight: 600;
}

.features-box {
    max-width: 100%;
    margin: 25px auto;
    padding: 20px;
    background: linear-gradient(135deg,#111827,#1e293b);
    border: 1px solid rgba(167,139,250,.25);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.features-title {
    color: #a78bfa;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing:.4px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding: 12px 12px 12px 40px;
    margin-bottom: 10px;
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    color: #e5e7eb;
    font-size: 0.95rem;
    font-weight: 500;
    transition:.3s ease;
}

.features-list li::before {
    content:"✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform:translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius:50%;
    background:#8b5cf6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:bold;
}

.features-list li:hover {
    transform: translateX(6px);
    background: rgba(167,139,250,.12);
}

.intro {
    font-size: 1.05rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px;
    color: #cbd5e1;
    padding: 0 10px;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.game-card {
    background: rgba(30, 58, 138, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(139,92,246,0.3);
    border-color: #a78bfa;
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #fbbf24;
}

.game-content {
    padding: 20px 15px;
    text-align: center;
}

.game-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(251,191,36,0.5);
}

.game-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
}

h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #fbbf24;
    margin: 50px 0 25px;
    text-align: center;
    text-shadow: 0 0 18px rgba(251,191,36,0.35);
}

.section {
    background: rgba(30, 58, 138, 0.38);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 16px;
    padding: 25px 20px;
    margin: 30px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

ol.steps-simple {
    counter-reset: step;
    list-style: none;
    max-width: 100%;
    margin: 0 auto 25px;
    padding: 0;
}

ol.steps-simple li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 22px;
    font-size: 1rem;
    min-height: 45px;
    align-items: center;
}

ol.steps-simple li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a78bfa, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 6px 20px rgba(139,92,246,0.4);
}

ul.download-steps,
ul.register-steps,
ul.login-steps,
ul.gift-steps {
    list-style: none;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 0;
}

ul.download-steps li,
ul.register-steps li,
ul.login-steps li,
ul.gift-steps li {
    font-size: 0.98rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: bold;
}

.cta-center {
    text-align: center;
    margin: 30px 0 20px;
}

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 280px;
}

.btn-download {
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    color: white;
}

.btn-register {
    background: linear-gradient(90deg, #ef4444, #f87171);
    color: white;
}

.btn-login {
    background: linear-gradient(90deg, #22c55e, #4ade80);
    color: white;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139,92,246,0.5);
}

.note {
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.reason-card {
    background: rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: #a78bfa;
    box-shadow: 0 20px 50px rgba(139,92,246,0.3);
}

.reason-icon {
    font-size: 2.2rem;
    color: #fbbf24;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(251,191,36,0.5);
}

.reason-text {
    font-size: 1rem;
    font-weight: 500;
}

.carousel {
    max-width: 100%;
    width: 100%;
    height: 280px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    background: #000;
}

.slides {
    width: 500%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 20%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.slide:hover img {
    transform: scale(1.04);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.prev:hover, .next:hover {
    background: rgba(147, 51, 234, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 8px; }
.next { right: 8px; }

.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #c084fc;
    transform: scale(1.4);
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.slider {
    display: flex;
    width: max-content;
    animation: slide 40s linear infinite;
    gap: 15px;
    padding: 0 20px;
}

.slider:hover {
    animation-play-state: paused;
}

.slide-item {
    flex-shrink: 0;
    width: 220px;
    height: 430px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 6px solid #1e293b;
    background: #111827;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.img-container {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(168, 85, 247, 0.2) inset;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;  
    gap: 40px;
}



.review-card {
    background: linear-gradient(145deg, rgba(30,58,138,0.48), rgba(15,23,55,0.6));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(163,139,250,0.3);
    border-radius: 24px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 18px 55px rgba(0,0,0,0.6);
}

.review-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #a78bfa, #fbbf24, #f97316, #a78bfa);
    background-size: 400%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    animation: borderGlow 7s linear infinite;
}

.review-card:hover::before {
    opacity: 0.22;
    transform: scale(1.08);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 90px rgba(139,92,246,0.4);
    border-color: #c084fc;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(251,191,36,0.7);
    box-shadow: 0 0 30px rgba(251,191,36,0.6);
    transition: all 0.45s;
}

.review-card:hover .player-avatar {
    transform: scale(1.1) rotate(3deg);
    border-color: #fbbf24;
    box-shadow: 0 0 45px rgba(251,191,36,0.8);
}

.player-info {
    flex: 1;
    min-width: 150px;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1rem;
    color: #d1d5db;
    font-weight: 400;
    line-height: 1.6;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0 60px;
    background: rgba(30,58,138,0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-table th {
    background: rgba(59,130,246,0.3);
    color: #fbbf24;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    font-size: 0.95rem;
    color: #d1d5db;
}

.yes {
    color: #22c55e;
    font-weight: bold;
}

.no {
    color: #ef4444;
    font-weight: bold;
}



.payment-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #cbd5e1;
    padding: 0 15px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 15px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: slideInfinite 18s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    width: 140px;
    height: 100px;
    margin: 0 15px;
    background: rgba(30, 58, 138, 0.45);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.carousel-item:hover {
    transform: scale(1.08);
    border-color: #fbbf24;
    box-shadow: 0 20px 50px rgba(251,191,36,0.35);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    background: #ffffff;
    transition: transform 0.4s;
}

.carousel-item:hover img {
    transform: scale(1.08);
}

.carousel-track {
    animation: slideInfinite 20s linear infinite;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.methods-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.methods-list li {
    background: rgba(30, 58, 138, 0.35);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    min-width: 130px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.methods-list li:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-3px);
    border-color: #fbbf24;
    box-shadow: 0 10px 25px rgba(251,191,36,0.2);
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: rgba(30, 58, 138, 0.35);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139,92,246,0.25);
    border-color: #fbbf24;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    user-select: none;
    background: rgba(59, 130, 246, 0.15);
}

.faq-question h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fbbf24;
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #e0e7ff;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 18px;
}

/* === Tablet Styles (481px - 768px) === */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 70px 20px 50px;
    }
    
    .content {
        padding: 35px 25px;
    }
    
    .cta {
        min-width: 180px;
        padding: 14px 28px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-image {
        height: 180px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
         grid-template-columns: repeat(2, 1fr); 
    }
    
    .review-card {
        padding: 25px 18px;
    }
    
    .player-avatar {
        width: 70px;
        height: 70px;
    }
    
    .player-name {
        font-size: 1.2rem;
    }
    
    .carousel {
        height: 320px;
    }
    
    .prev, .next {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .slide-item {
        width: 200px;
        height: 400px;
    }
    
    .img-container {
        max-width: 240px;
    }
    
    .methods-list li {
        min-width: 140px;
        padding: 12px 18px;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
    }
}

/* === Desktop Styles (769px and above) === */
@media (min-width: 769px) {
    .hero {
        padding: 80px 20px 60px;
    }
    
    .cta {
        min-width: 200px;
        padding: 14px 38px;
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
    
    .game-image {
        height: 220px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
    
    .review-card {
        padding: 45px 38px;
    }
    
    .player-avatar {
        width: 120px;
        height: 120px;
    }
    
    .carousel {
        height: 450px;
    }
    
    .prev, .next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .slide-item {
        width: 320px;
        height: 620px;
    }
    
    .img-container {
        max-width: 300px;
    }
    
    .methods-list li {
        min-width: 160px;
        padding: 16px 32px;
    }
    
    .faq-question h3 {
        font-size: 1.25rem;
    }
}

/* === Small Mobile Styles (up to 380px) === */
@media (max-width: 380px) {
    .hero {
        padding: 50px 12px 30px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .cta {
        min-width: 140px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .game-content h3 {
        font-size: 1.3rem;
    }
    
    .game-desc {
        font-size: 0.9rem;
    }
    
    .reason-icon {
        font-size: 2rem;
    }
    
    .reason-text {
        font-size: 0.95rem;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
    }
    
    .player-info {
        text-align: center;
    }
    
    .player-avatar {
        width: 70px;
        height: 70px;
    }
    
    .review-card {
        padding: 20px 15px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .carousel {
        height: 220px;
    }
    
    .slide-item {
        width: 180px;
        height: 350px;
        border-width: 4px;
    }
    
    .methods-list li {
        min-width: 100%;
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question::after {
        font-size: 1.3rem;
    }
    
    .faq-answer {
        font-size: 0.92rem;
    }
}

/* === Landscape Mode Fixes === */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding: 40px 15px;
    }
    
    .carousel {
        height: 200px;
    }
    
    .slide-item {
        width: 160px;
        height: 280px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-image {
        height: 150px;
    }
    
    .review-header {
        flex-direction: row;
    }
    
    .player-avatar {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
  
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;  
        margin: 20px 0;
        border-radius: 16px;
    }
    
  
    .comparison-table {
        min-width: 100%;  
        margin: 0;  
    }
    
    .table-wrapper::after {
       
        display: block;
        text-align: center;
        font-size: 0.85rem;
        color: #94a3b8;
        padding: 8px 0;
        font-style: italic;
    }
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .comparison-table th {
        font-size: 0.95rem;
    }
}


/* === Touch Device Optimizations === */
@media (hover: none) and (pointer: coarse) {
    .cta:hover,
    .btn:hover,
    .game-card:hover,
    .reason-card:hover,
    .review-card:hover,
    .faq-item:hover {
        transform: none;
    }
    
    .cta:active,
    .btn:active {
        transform: scale(0.98);
    }
    
    .slider:hover {
        animation-play-state: running;
    }
    
    .carousel-item:hover {
        transform: none;
    }
}

/* === Print Styles === */
@media print {
    .hero {
        background: none;
        min-height: auto;
        padding: 20px;
    }
    
    .cta-buttons,
    .carousel,
    .slider-wrapper,
    .prev,
    .next,
    .dots {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    h1, h2, h3, p {
        color: black;
    }
}
   

    /* ess page */
    
    .about-hero {
      margin-top: 60px;
      background: linear-gradient(rgba(11,15,36,0.88), rgba(11,15,36,0.94));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px 30px;
      position: relative;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(167,139,250,0.16), transparent 65%);
    }

    .about-container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .about-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      background: linear-gradient(90deg, #f97316, #fbbf24, #c084fc, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: gradientFlow 5s linear infinite;
      margin-bottom: 0.8rem;
    }

    @keyframes titleFlow {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .about-lead {
      font-size: 1.4rem;
      color: #d1d9ff;
      max-width: 760px;
      margin: 0 auto 60px;
      font-weight: 300;
    }

    .about-content-box {
      background: rgba(20, 35, 80, 0.42);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(99,102,241,0.28);
      border-radius: 24px;
      padding: 55px 45px;
      margin: 70px 0;
      box-shadow: 0 20px 70px rgba(0,0,0,0.6);
    }

    .about-paragraph {
      font-size: 1.12rem;
      margin-bottom: 1.8rem;
      color: #d4d9f1;
    }

    .about-contact-section {
      text-align: center;
      margin-top: 80px;
      padding: 50px 35px;
      background: rgba(20, 28, 70, 0.55);
      border-radius: 20px;
      border: 1px solid rgba(167,139,250,0.25);
    }

    .about-contact-text {
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
    }

    .about-email-link {
      font-size: 1.45rem;
      font-weight: 600;
      color: #c084fc;
      text-decoration: none;
      transition: all 0.35s;
    }

    .about-email-link:hover {
      color: #e0bbff;
      text-shadow: 0 0 25px rgba(192,132,252,0.7);
      letter-spacing: 1px;
    }

    @media (max-width: 768px) {
      .about-hero {
        padding: 110px 15px 70px;
      }
      .about-title {
        font-size: 3.6rem;
      }
      .about-content-box {
        padding: 45px 30px;
      }
      .about-lead {
        font-size: 1.25rem;
      }
    }

    /* contact us */

    
    .contact-wrapper {
      width: 100%;
      max-width: 1100px;
      margin: 30px auto;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
       margin-top: 60px;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-header h1 {
    font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      background: linear-gradient(90deg, #f97316, #fbbf24, #c084fc, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: gradientFlow 5s linear infinite;
      margin-bottom: 0.8rem;
    }

    @keyframes gradientFlow {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .contact-header p {
      font-size: 1.18rem;
      color: #cbd5e1;
      opacity: 0.9;
    }

    .contact-card {
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(99, 102, 241, 0.28);
      border-radius: 24px;
      padding: 50px 45px;
      box-shadow: 
        0 20px 60px rgba(0,0,0,0.6),
        inset 0 0 40px rgba(99,102,241,0.08);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, #c084fc, #fbbf24, #f97316, #c084fc);
      background-size: 300%;
      border-radius: 26px;
      z-index: -1;
      opacity: 0.12;
      animation: borderPulse 8s linear infinite;
    }

    @keyframes borderPulse {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .form-group {
      position: relative;
      margin-bottom: 38px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 18px 22px;
      background: rgba(30, 41, 68, 0.55);
      border: 1px solid rgba(148, 163, 184, 0.35);
      border-radius: 14px;
      color: #f1f5f9;
      font-size: 1.02rem;
      transition: all 0.35s ease;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #fbbf24;
      box-shadow: 0 0 25px rgba(251,191,36,0.22);
      background: rgba(30, 41, 68, 0.75);
    }

    .form-group label {
      position: absolute;
      left: 22px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      font-size: 1.02rem;
      pointer-events: none;
      transition: all 0.35s ease;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
      top: -12px;
      left: 18px;
      font-size: 0.88rem;
      color: #fbbf24;
      background: rgba(15, 23, 42, 0.9);
      padding: 0 10px;
      font-weight: 500;
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    .submit-button {
      width: 100%;
      padding: 18px;
      background: linear-gradient(90deg, #10b981, #34d399);
      color: white;
      border: none;
      border-radius: 14px;
      font-size: 1.18rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(16,185,129,0.35);
    }

    .submit-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(16,185,129,0.55);
      background: linear-gradient(90deg, #059669, #10b981);
    }

    .form-status {
      margin-top: 25px;
      text-align: center;
      font-size: 1.05rem;
      min-height: 24px;
      display: none;
    }

    .success-msg {
      color: #34d399;
    }

    .error-msg {
      color: #f87171;
    }

    @media (max-width: 576px) {
      .contact-card {
        padding: 40px 28px;
      }
      .contact-header h1 {
        font-size: 3.2rem;
      }
    }

    /* disclaimer */

    
    .disclaimer-top {
      min-height: 40vh;
      background: linear-gradient(rgba(11,15,36,0.88), rgba(11,15,36,0.94));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px 30px;
      position: relative;
       margin-top: 60px;
    }

    .disclaimer-top::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(167,139,250,0.16), transparent 65%);
    }

    .main-wrapper {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .page-heading {
    font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      background: linear-gradient(90deg, #f97316, #fbbf24, #c084fc, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: gradientFlow 5s linear infinite;
      margin-bottom: 0.8rem;
    }

    @keyframes headingFlow {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .info-block {
      background: rgba(20, 35, 80, 0.42);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(99,102,241,0.28);
      border-radius: 24px;
      padding: 55px 45px;
      margin: 70px 0;
      box-shadow: 0 20px 70px rgba(0,0,0,0.6);
    }

    .info-text {
      font-size: 1.12rem;
      margin-bottom: 1.8rem;
      color: #d4d9f1;
    }

    @media (max-width: 768px) {
      .disclaimer-top {
        padding: 110px 15px 70px;
      }
      .page-heading {
        font-size: 3.6rem;
      }
      .info-block {
        padding: 45px 30px;
      }
    }

    /* privacy policy  */

       .privacy-banner {
      min-height:40vh;
      background: linear-gradient(rgba(11,15,36,0.88), rgba(11,15,36,0.94));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px 30px;
      position: relative;
       margin-top: 60px;
    }

    .privacy-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(167,139,250,0.16), transparent 65%);
    }

    .content-frame {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .main-title {
     font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      background: linear-gradient(90deg, #f97316, #fbbf24, #c084fc, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: gradientFlow 5s linear infinite;
      margin-bottom: 0.8rem;
    }

    @keyframes titleShift {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .policy-section {
      background: rgba(20, 35, 80, 0.42);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(99,102,241,0.28);
      border-radius: 24px;
      padding: 55px 45px;
      margin: 70px 0;
      box-shadow: 0 20px 70px rgba(0,0,0,0.6);
    }

    .policy-paragraph {
      font-size: 1.12rem;
      margin-bottom: 1.8rem;
      color: #d4d9f1;
    }

    @media (max-width: 768px) {
      .privacy-banner {
        padding: 110px 15px 70px;
      }
      .main-title {
        font-size: 3.6rem;
      }
      .policy-section {
        padding: 45px 30px;
      }
    }

    /* terms conditions */

        .terms-header-bg {
      min-height: 40vh;
      background: linear-gradient(rgba(11,15,36,0.88), rgba(11,15,36,0.94));
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px 30px;
      position: relative;
       margin-top: 60px;
    }

    .terms-header-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(167,139,250,0.16), transparent 65%);
    }

    .core-layout {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .terms-main-title {
    font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      background: linear-gradient(90deg, #f97316, #fbbf24, #c084fc, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: gradientFlow 5s linear infinite;
      margin-bottom: 0.8rem;
    }

    @keyframes glowFlow {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .rules-container {
      background: rgba(20, 35, 80, 0.42);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(99,102,241,0.28);
      border-radius: 24px;
      padding: 55px 45px;
      margin: 70px 0;
      box-shadow: 0 20px 70px rgba(0,0,0,0.6);
    }

    .rules-text {
      font-size: 1.12rem;
      margin-bottom: 1.8rem;
      color: #d4d9f1;
    }

    @media (max-width: 768px) {
      .terms-header-bg {
        padding: 110px 15px 70px;
      }
      .terms-main-title {
        font-size: 3.6rem;
      }
      .rules-container {
        padding: 45px 30px;
      }
    }

     /* author card - colors from original CSS */
        .author-card {
            max-width: 1100px;
            width: 100%;
            background: rgba(15, 23, 55, 0.65);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.18);
            border-radius: 16px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.6);
            overflow: hidden;
            transition: all 0.3s ease;
            margin: 80px auto;
            margin-top: 100px;
        }

        .author-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(139,92,246,0.3);
            border-color: #a78bfa;
        }

        /* hero section */
        .author-hero {
            display: flex;
            flex-wrap: wrap;
            background: rgba(30, 58, 138, 0.4);
            border-bottom: 1px solid rgba(59,130,246,0.25);
        }

        /* avatar container */
        .author-avatar-frame {
            flex: 0 0 200px;
            background: rgba(15, 23, 55, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .author-avatar-frame img {
            width: 260px;
            height: 260px;
            object-fit: cover;
            border-radius: 20%;
            border: 4px solid #fbbf24;
            box-shadow: 0 0 30px rgba(251,191,36,0.6);
            background: #1e293b;
        }

        /* author headline */
        .author-headline {
            flex: 1;
            padding: 2rem 2rem 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .author-headline h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            background: linear-gradient(90deg, #f97316, #fbbf24, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(249,115,22,0.4);
            line-height: 1.2;
            text-align: start;
        }

        .author-headline .subhead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #fbbf24;
            margin-top: 0.25rem;
            border-left: 4px solid #f97316;
            padding-left: 0.75rem;
        }

        .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            margin-top: 1.2rem;
        }

        .badge {
            background: rgba(30, 58, 138, 0.4);
            border: 1px solid rgba(59,130,246,0.25);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cbd5e1;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .badge strong {
            font-weight: 700;
            color: #fbbf24;
        }

        .badge span {
            color: #fbbf24;
        }

        /* slug line */
        .slug-line {
            font-family: monospace;
            background: rgba(251,191,36,0.12);
            border: 1px solid #fbbf24;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            color: #fbbf24;
            font-size: 0.9rem;
            margin-top: 1rem;
            display: inline-block;
        }

        /* bio section */
        .bio-section {
            padding: 2.2rem 2.5rem;
            background: rgba(15, 23, 55, 0.4);
        }

        .bio-content p {
            font-size: 1.06rem;
            color: #cbd5e1;
            margin-bottom: 1.3rem;
            line-height: 1.7;
        }

        .bio-content p:last-child {
            margin-bottom: 0;
        }

       
        


        /* mobile responsive */
        @media (max-width: 800px) {
            .author-hero {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .author-avatar-frame {
                flex: 0 0 auto;
                width: 100%;
                padding: 2rem 1rem 0.5rem;
                background: transparent;
            }

            .author-headline {
                padding: 0.5rem 1.5rem 2rem;
                align-items: center;
            }

            .author-headline .subhead {
                border-left: none;
                border-top: 2px solid #f97316;
                padding-top: 0.5rem;
                padding-left: 0;
            }

            .badge-row {
                justify-content: center;
            }

            .bio-section {
                padding: 2rem 1.5rem;
            }

            .exp-strip {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                text-align: center;
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .author-headline h1 {
                font-size: 1.9rem;
            }
            
            .author-headline .subhead {
                font-size: 1rem;
            }
            
            .badge {
                font-size: 0.85rem;
                padding: 0.3rem 0.8rem;
            }
            
            .bio-content p {
                font-size: 0.98rem;
            }
            
            .slug-line {
                font-size: 0.85rem;
            }
        }

        /* avatar image - base64 SVG with colors from original CSS */
        .avatar-img {
            border: 4px solid #fbbf24 !important;
        }

        /* footer */



        .footer {
      background: #0e1734;
      color: #e0d4ff;
      padding: 70px 20px 40px;
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(120, 60, 200, 0.18);
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .footer-container {
      max-width: 1180px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: 220px 1fr 280px;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* Logo */
    .logo-img {
      max-width: 160px;
      height: auto;
      filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.45));
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .logo-img:hover {
      transform: scale(1.12) rotate(3deg);
      filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.7));
    }

    /* Brand */
    .footer-brand {
      text-align: center;
    }

    .brand-title {
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(90deg, #fabe24, #ddc27d, #fabe24);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 1.5px;
      margin: 0 0 10px;
      text-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
    }

    .brand-tagline {
      font-size: 1.1rem;
      color: #c4b5fd;
      font-weight: 400;
      opacity: 0.92;
      letter-spacing: 0.4px;
    }

    /* Links */
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: right;
    }

    .footer-links a {
      color: #d1c4ff;
      text-decoration: none;
      font-size: 15.5px;
      font-weight: 500;
      transition: all 0.35s ease;
      position: relative;
      padding-right: 18px;
    }

    .footer-links a::after {
      content: '↗';
      position: absolute;
      right: 0;
      opacity: 0;
      transform: translateX(-8px);
      transition: all 0.35s ease;
      color: #a78bfa;
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(-4px);
    }

    .footer-links a:hover::after {
      opacity: 0.8;
      transform: translateX(0);
    }

    /* Disclaimer */
    .footer-disclaimer {
      max-width: 1180px;
      margin: 0 auto 50px;
      background: rgba(25, 15, 50, 0.38);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(120, 60, 200, 0.22);
      border-radius: 16px;
      padding: 32px 38px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      position: relative;
      z-index: 1;
    }

    .disclaimer-title {
      color: #ff9aaa;
      font-size: 1.45rem;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: 0.7px;
    }

    .disclaimer-container p {
      font-size: 14.8px;
      line-height: 1.72;
      color: #d1d5ff;
      margin-bottom: 18px;
    }

    .disclaimer-container p:last-child {
      margin-bottom: 0;
    }

    /* Bottom */
    .footer-bottom {
      max-width: 1180px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .footer-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
      margin: 0 auto 22px;
      max-width: 600px;
    }

    .footer-copyright {
      font-size: 14.2px;
      color: #a0a0cc;
      letter-spacing: 0.6px;
    }

    .highlight {
      color: #e0bbff;
      font-weight: 600;
    }

    /* ─── Responsive ─────────────────────────────────────────────── */
    @media (max-width: 960px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
      }

      .footer-logo,
      .footer-links {
        text-align: center;
      }

      .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 32px;
      }

      .footer-links a::after {
        display: none;
      }

      .footer-links a:hover {
        transform: none;
      }

      .footer-disclaimer {
        padding: 28px 24px;
      }
    }

    @media (max-width: 520px) {
      .footer {
        padding: 60px 16px 35px;
      }

      .logo-img {
        max-width: 130px;
      }

      .brand-title {
        font-size: 2rem;
      }

      .disclaimer-title {
        font-size: 1.3rem;
      }

      .disclaimer-container p {
        font-size: 14px;
      }
    }

    .btn-download,
.btn-login,
.btn-register {
  text-decoration: none;
}
.btn{
  text-decoration:none;
}