/* 
   PREMIUM SOCIAL CASINO DESIGN SYSTEM
   Theme: Gold & Onyx Modern Luxury
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary-gold: #D4AF37;
    --dark-gold: #996515;
    --accent-red: #8B0000;
    --bg-black: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text-white: #F5F5F5;
    --text-gray: #A0A0A0;
    --glass-border: rgba(212, 175, 55, 0.15);

    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: 0.4s var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-gold), #FFF, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-age-badge {
    background: var(--accent-red);
    color: #fff;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--bg-black), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-compliance-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.badge-18-large {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--accent-red);
    color: #fff;
    background: var(--accent-red);
    font-weight: 900;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.badge-18 {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    font-style: italic;
}

.hero h1 span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-gold), #f3e5ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, var(--dark-gold), var(--primary-gold));
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: 0.4s var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* --- GAMES SECTION --- */
.section-p {
    padding: 120px 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: 0.5s var(--transition);
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.game-img-wrapper {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s var(--transition);
}

.game-card:hover .game-img-wrapper img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 5;
}

.game-meta {
    font-size: 0.8rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.game-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s var(--transition);
}

.game-card:hover .game-btn {
    opacity: 1;
    transform: translateY(0);
}

/* --- TRUST & STATS --- */
.stats-section {
    background: linear-gradient(to right, #0a0a0a, #111, #0a0a0a);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    position: relative;
    transition: 0.4s var(--transition);
}

.review-card:hover {
    background: rgba(40, 40, 40, 0.4);
    border-color: var(--primary-gold);
}

.review-stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--dark-gold), var(--primary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 0.8rem;
}

.author-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* --- DISCLAIMER BOX --- */
.disclaimer-section {
    background: #080808;
    border-top: 1px solid #1a1a1a;
}

.disclaimer-card {
    padding: 80px 50px;
    border: 1px solid var(--glass-border);
    background: rgba(20, 20, 20, 0.5);
    text-align: center;
    position: relative;
}

.age-icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 30px;
    background: rgba(139, 0, 0, 0.05);
}

.disclaimer-card h3 {
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
}

.disclaimer-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.disclaimer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.disclaimer-col p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.disclaimer-col a {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    padding: 100px 0 50px;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-age-stamp {
    display: inline-block;
    margin-top: 25px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff0000;
    border: 5px solid #ff0000;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 90px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 40px;
    text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s var(--transition);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}