
:root {
    --primary-color: #1A1A2E;
    --secondary-color: #16213E;
    --accent-color-gold: #E94560;
    --accent-color-red: #F9ED69;
    --text-color: #FFFFFF;
    --text-color-secondary: #A9A9A9;
    --font-main: 'Noto Sans SC', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-size: 18px;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

a {
    color: var(--accent-color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color-red);
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--accent-color-red);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; margin-top: 3rem; margin-bottom: 1.5rem; border-bottom: 3px solid var(--accent-color-gold); padding-bottom: 0.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Header */
.site-header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    border-bottom: 5px solid var(--accent-color-gold);
}

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

.logo img {
    max-height: 80px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover, .main-nav .active a {
    background-color: var(--accent-color-gold);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 6rem 0;
    color: white;
}

.hero h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.cta-button {
    background-color: var(--accent-color-gold);
    color: var(--primary-color) !important;
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 2rem;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color-red);
    transform: translateY(-5px);
}

/* Content Sections */
.content-section {
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Game Cards */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--accent-color-gold);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.3);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

/* Footer */
.site-footer {
    background-color: #0D0D1A;
    color: var(--text-color-secondary);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--accent-color-red);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-color-secondary);
}

.footer-section a:hover {
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
}

.payment-icons img, .social-icons img {
    max-height: 30px;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover, .social-icons img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .header-content {
        flex-direction: column;
    }

    .main-nav ul {
        flex-direction: column;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .main-nav li {
        margin: 10px 0;
    }
}
