/* Global Styles */
:root {
    --primary-color: #f9a825; /* Golden yellow for primary actions */
    --secondary-color: #d81b60; /* Pink for highlights and accents */
    --tertiary-color: #5e35b1; /* Purple for additional highlights */
    --dark-color: #212121; /* Dark background */
    --light-color: #f5f5f5; /* Light background */
    --text-color: #333333; /* Text color */
    --light-text: #ffffff; /* Light text color */
    --border-radius: 4px; /* Border radius for elements */
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Shadow for cards */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #121212;
}

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

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: #ffb74d;
    color: var(--dark-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.btn-cta {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background-color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.4);
}

/* Header Styles */
.site-header {
    background-color: var(--dark-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    max-width: 200px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Section Styles */
section {
    padding: 60px 0;
    color: var(--light-text);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.badge-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.badge-tertiary {
    background-color: var(--tertiary-color);
    color: var(--light-text);
}

/* Card Styles */
.card {
    background-color: #1e1e1e;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

/* Game Card Specific */
.game-card {
    position: relative;
}

.game-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(249, 168, 37, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-icon {
    opacity: 1;
}

.game-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: var(--light-text);
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

table th {
    background-color: #2d2d2d;
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: #1a1a1a;
}

/* Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    padding: 30px 0;
    color: #888;
    font-size: 0.9rem;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 15px;
}

.footer-info a {
    color: #aaa;
    margin: 0 10px;
}

.footer-info a:hover {
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 30px;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .auth-buttons {
        display: none;
    }

    .site-header .container {
        justify-content: space-between;
    }

    .logo {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.8rem;
    }
}

/* Bonus Calendar Styling */
.bonus-calendar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.calendar-day {
    min-width: 220px;
    background-color: #1e1e1e;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.calendar-day:hover {
    transform: translateY(-5px);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #2d2d2d;
}

.day-title {
    font-weight: 600;
    color: var(--light-text);
}

.day-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.day-content {
    padding: 15px;
    text-align: center;
}

.day-content img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}