/* =========================
   TOPSLOTIK CSS 3.0
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:
        radial-gradient(circle at top,#0b1d4a 0%,#050d1f 45%,#030812 100%);
    color:#fff;
    overflow-x:hidden;
}

/* =========================
   HEADER
========================= */

header{
    padding:25px 40px;
    background:rgba(5,12,30,.85);
    backdrop-filter:blur(20px);
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    font-size:42px;
    font-weight:900;
    background:linear-gradient(135deg,#a855f7,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    box-shadow:
    0 0 20px rgba(168,85,247,.5),
    0 0 30px rgba(168,85,247,.25);
}

.logo span{
    font-size:42px;
    font-weight:900;

    background:linear-gradient(
        135deg,
        #a855f7,
        #6366f1
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

nav{
    display:flex;
    align-items:center;
    gap:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#c084fc;
}

.header-btn,
.register-btn{
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    padding:12px 18px;
    border-radius:12px;
    transition:.3s;
}

.header-btn:hover,
.register-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 25px rgba(168,85,247,.5);
}

.login-btn{
    border:1px solid rgba(255,255,255,.15);
    padding:12px 18px;
    border-radius:12px;
}

.burger{
    display:none;
}

/* =========================
   HERO
========================= */

.hero{
    text-align:center;
    padding:120px 20px 90px;
}

.hero h1{
    font-size:76px;
    margin-bottom:25px;
    line-height:1.1;
}

.hero p{
    font-size:24px;
    color:#c7d0e0;
    margin-bottom:40px;
}

.hero-btn{
    display:inline-block;
    padding:20px 50px;
    border-radius:16px;
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.35s;

    box-shadow:
        0 0 25px rgba(168,85,247,.4),
        0 0 60px rgba(168,85,247,.15);
}

.hero-btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 0 40px rgba(168,85,247,.8),
        0 0 80px rgba(168,85,247,.3);
}

/* =========================
   CARDS
========================= */

.top-casinos{
    width:90%;
    max-width:1400px;
    margin:auto;
    padding-bottom:100px;
}

.casino-card,
.card{
    background:rgba(27,41,68,.9);

    backdrop-filter:blur(10px);

    border-radius:26px;

    padding:35px;

    margin-bottom:28px;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s ease;

    box-shadow:
        0 0 25px rgba(124,58,237,.12),
        0 0 60px rgba(124,58,237,.06);
}

.casino-card:hover,
.card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 0 40px rgba(168,85,247,.35),
        0 0 100px rgba(168,85,247,.15);
}

.casino-card h2{
    font-size:60px;
    line-height:0.95;
    margin-bottom:15px;
}

.card h3{
    color:#fbbf24;
    font-size:34px;
    margin-bottom:15px;
}

.casino-badge{
    color:#fff;
    font-size:18px;
    margin-bottom:10px;
}

.rating{
    font-size:22px;
    margin-bottom:10px;
}

.bonus{
    color:#fbbf24;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.casino-card p,
.card p{
    color:#dbe4f0;
    line-height:1.7;
}

.casino-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.play-btn{
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    font-weight:700;

    transition:.3s;

    box-shadow:
        0 0 20px rgba(168,85,247,.4);
}

.play-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 0 40px rgba(168,85,247,.7);
}

.review-btn{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    transition:.3s;
}

.review-btn:hover{
    background:rgba(255,255,255,.05);
}

/* =========================
   ABOUT / SEO
========================= */

.about,
.seo{
    width:90%;
    max-width:1400px;
    margin:0 auto 40px;
}

/* =========================
   FOOTER
========================= */

footer{
    text-align:center;
    padding:70px 20px;
    color:#94a3b8;
    border-top:1px solid rgba(255,255,255,.05);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.casino-card,
.card{
    animation:fadeUp .6s ease;
}

/* =========================
   DESKTOP
========================= */

@media (min-width:769px){

#mobileMenu{
    display:flex !important;
    position:static;
    flex-direction:row;
    width:auto;
    background:none;
    padding:0;
    gap:20px;
}

.burger{
    display:none !important;
}

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

header{
    padding:18px 20px;
    position:relative;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
}

.logo span{
    font-size:18px;
    font-weight:800;
}

.burger{
    display:block;
    font-size:34px;
    color:#fff;
    cursor:pointer;
}

#mobileMenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;

    background:#08152f;

    padding:20px;

    flex-direction:column;

    gap:12px;

    border-top:1px solid rgba(255,255,255,.08);

    z-index:9999;
}

#mobileMenu.active{
    display:flex;
}

#mobileMenu a{
    width:100%;
    text-align:center;
}

.header-btn,
.login-btn,
.register-btn{
    width:100%;
}

.hero{
    padding:70px 20px 50px;
}

.hero h1{
    font-size:44px;
}

.hero p{
    font-size:18px;
    line-height:1.5;
}

.hero-btn{
    display:block;
    width:100%;
}

.top-casinos{
    width:95%;
}

.casino-card,
.card{
    padding:24px;
}

.casino-card h2{
    font-size:42px;
}

.card h3{
    font-size:28px;
}

.casino-buttons{
    flex-direction:column;
}

.play-btn,
.review-btn{
    width:100%;
    text-align:center;
}

.review-casino{
    display:inline-block;
    padding:8px 14px;
    margin-bottom:15px;
    border-radius:10px;

    background:linear-gradient(
        135deg,
        #7c3aed,
        #9333ea
    );

    color:#fff;
    font-weight:700;
    font-size:14px;

    box-shadow:
    0 0 20px rgba(168,85,247,.35);
}

}
/* =========================
   REVIEWS PAGE
========================= */

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-buttons .hero-btn{
    min-width:260px;
    text-align:center;
}

.review-casino{
    display:inline-block;
    padding:8px 14px;
    margin-bottom:12px;
    border-radius:10px;
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    box-shadow:0 0 20px rgba(168,85,247,.35);
}

.review-date{
    color:#94a3b8;
    font-size:14px;
    margin-bottom:12px;
}

.review-rating{
    font-size:22px;
    margin-bottom:15px;
}

.card h3{
    color:#fbbf24;
    font-size:42px;
    margin-bottom:15px;
}

.card p{
    font-size:20px;
    line-height:1.7;
}

/* =========================
   MOBILE REVIEWS
========================= */

/* =========================
   MOBILE REVIEWS
========================= */

@media (max-width:768px){

    .hero-buttons{
        flex-direction:column;
        gap:20px;
    }

    .hero-buttons .hero-btn{
        width:100%;
        max-width:320px;
        min-width:auto;
    }

    .card h3{
        font-size:30px;
    }

    .card p{
        font-size:17px;
    }

    .review-casino{
        font-size:13px;
    }

}/* =========================
   REVIEW CARDS FIX
========================= */

.card{
    max-width:1200px;
    margin:0 auto 30px;
    background:rgba(27,41,68,.95);
    border-radius:28px;
    padding:35px;
}

.review-casino{
    display:inline-block !important;
    padding:8px 14px;
    margin-bottom:10px;
    border-radius:10px;
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    color:#ffffff !important;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}

.review-date{
    display:block;
    color:#94a3b8;
    font-size:14px;
    margin-bottom:15px;
}

.review-rating{
    color:#fbbf24;
    font-size:28px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.card h3{
    color:#fbbf24;
    font-size:48px;
    margin-bottom:20px;
}

.card p{
    color:#dbe4f0;
    font-size:20px;
    line-height:1.7;
}/* Белые имена в отзывах */

.top-casinos .card h3{
    color:#ffffff !important;
}