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

:root {
    --primary-red: #D2001F;
    --secondary-red: #B71C1C;
    --accent-red: #8B0000;
    --soft-gold: #F4E4BC;
    --gold: #E6B800;
    --yellow: #F2C94C;
    --soft-teal: #4ECDC4;
    --teal: #26A69A;
    --soft-blue: #6C7CE0;
    --blue: #5A67D8;
    --cream: #FFF8E7;
    --white: #ffffff;
    --black: #2D3748;
    --gray: #718096;
    --light-gray: #F7FAFC;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --soft-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-gold) 50%, var(--primary-red) 100%);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--yellow) 100%);
    color: var(--black);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal-content {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.age-modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.shield-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.age-modal h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.age-modal p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--black);
}

.confirm-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.confirm-btn:hover {
    background: var(--secondary-red);
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    z-index: 1000;
    border-top: 3px solid var(--gold);
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--black);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.accept-btn, .decline-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.accept-btn {
    background: var(--primary-red);
    color: var(--white);
}

.decline-btn {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--soft-gold) 0%, var(--gold) 100%);
    color: var(--black);
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-red);
    box-shadow: var(--soft-shadow);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    position: relative;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow);
}

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

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

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.btn-login, .btn-signup {
    padding: 8px 20px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.btn-login {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
}

.btn-signup {
    background: var(--gold) !important;
    color: var(--black) !important;
    border: 2px solid var(--gold) !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-logo {
    margin-bottom: 40px;
}

.main-logo {
    width: 320px;
    height: 320px;
    max-width: 90vw;
    max-height: 90vw;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--cream) 100%);
}

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

.feature-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-gaming { border-left: 5px solid var(--primary-red); }
.feature-security { border-left: 5px solid var(--teal); }
.feature-variety { border-left: 5px solid var(--blue); }

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-right: 20px;
    min-width: 80px;
}

.feature-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.feature-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--teal) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-character {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.character-cat {
    font-size: 80px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* Games Section */
.games {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.game-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--soft-shadow);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transition: var(--transition);
}

.game-thumb.burning-riot { background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%); }
.game-thumb.golden-triad { background: linear-gradient(135deg, var(--gold) 0%, var(--yellow) 100%); }
.game-thumb.killroad-66 { background: linear-gradient(135deg, #424242 0%, #212121 100%); }
.game-thumb.king-power { background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%); }
.game-thumb.street-ninja { background: linear-gradient(135deg, #607d8b 0%, #455a64 100%); }

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.play-btn:hover {
    background: var(--yellow);
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black);
}

.provider {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
}

/* No Purchase Section */
.no-purchase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--blue) 100%);
}

.no-purchase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.no-purchase-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.no-purchase-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.no-purchase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-purchase-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.character-mouse {
    font-size: 120px;
    animation: wiggle 3s ease-in-out infinite;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Leaderboard Section */
.leaderboard {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
}

.leaderboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.leaderboard-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.leaderboard-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.leaderboard-table {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.leaderboard-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.leaderboard-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 15px;
    margin-bottom: 30px;
}

.podium-item {
    text-align: center;
    padding: 15px 10px;
    border-radius: 8px;
    min-width: 100px;
    color: var(--white);
    font-weight: 700;
}

.podium-item.first {
    background: var(--gold);
    color: var(--black);
    height: 100px;
    order: 2;
}

.podium-item.second {
    background: #C0C0C0;
    color: var(--black);
    height: 80px;
    order: 1;
}

.podium-item.third {
    background: #CD7F32;
    color: var(--white);
    height: 60px;
    order: 3;
}

.podium-rank {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
}

.podium-name {
    font-size: 12px;
    margin-bottom: 5px;
}

.podium-score {
    font-size: 16px;
    font-weight: 700;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 6px;
}

.leader-item .rank {
    font-weight: 700;
    color: var(--primary-red);
    min-width: 30px;
}

.leader-item .name {
    flex: 1;
    font-weight: 600;
}

.leader-item .score {
    font-weight: 700;
    color: var(--primary-red);
}

/* Footer */
.footer {
    background: #333;
    padding: 60px 0 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--gold);
}

.footer-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-icons span {
    font-size: 14px;
    color: #ccc;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-text p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .no-purchase-content,
    .leaderboard-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .logo-inner h1 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-red);
        border-top: 2px solid var(--gold);
    }
    
    .nav.active .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .logo-frame {
        width: 250px;
        height: 160px;
    }
    
    .logo-inner h1 {
        font-size: 24px;
    }
    
    .section-header h2,
    .about-text h2,
    .no-purchase-text h2,
    .leaderboard-text h2 {
        font-size: 32px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .podium {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .logo-frame {
        width: 200px;
        height: 130px;
    }
    
    .logo-inner h1 {
        font-size: 20px;
    }
    
    .section-header h2,
    .about-text h2,
    .no-purchase-text h2,
    .leaderboard-text h2 {
        font-size: 28px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .character-cat {
        font-size: 60px;
    }
    
    .character-mouse {
        font-size: 80px;
    }
} 