/* CSS Variables */
:root {
    --primary-color: #FF3333;
    --primary-hover: #e62e2e;
    --secondary-color: #FFC107;
    --dark-bg: #221A1A;
    --darker-bg: #1A1A1A;
    --light-text: #FFFFFF;
    --gray-text: #CCCCCC;
    --dark-text: #333333;
    --purple-bg: #6A4C93;
    --purple-light: #8B5CF6;
    --purple-dark: #4C1D95;
    --border-color: #444444;
    --input-bg: #FFFFFF;
    --input-border: #DDDDDD;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--darker-bg);
}

/* Header Styles */
.header {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.sign-in-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
    background-color: var(--primary-hover);
}

/* Warning Banner */
.warning-banner {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    transition: 0.3s;
}

/* Footer Styles */
.footer {
    background-color: var(--darker-bg);
    color: var(--light-text);
    padding: 40px 0 20px;
    margin-top: 100px;
}

.footer-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-disclaimer p:last-child {
    font-weight: 700;
    font-size: 16px;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: var(--input-bg);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.popup-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px;
    text-align: center;
    position: relative;
}

.popup-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--dark-text);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--input-border);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 150px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

/* Main Content */
main {
    margin-top: 120px;
    min-height: calc(100vh - 120px - 300px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #221A1A;
        transition: left 0.3s ease;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .nav-list a {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .popup-content {
        margin: 20px;
    }

    .popup-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .logo img {
        height: 30px;
    }

    .sign-in-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .warning-banner {
        padding: 10px 15px;
        font-size: 12px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-disclaimer {
        padding: 0 15px;
    }

    .footer-links {
        padding: 0 15px;
    }
}

/* Home Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 51, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-disclaimer {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Join Section */
.join-section {
    background: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.join-content>p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.registration-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--light-text);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--input-border);
    border-radius: 8px;
    font-size: 16px;
    background: var(--input-bg);
    transition: all 0.3s ease;
}

.registration-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.checkbox-group {
    text-align: left;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-register {
    background: var(--secondary-color);
    color: var(--dark-text);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-register:hover {
    background: #e6ac00;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Video Section */
.video-section {
    background: var(--darker-bg);
    padding: 80px 0;
    text-align: center;
}

.video-content h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 40px;
    font-weight: 700;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(45deg, var(--purple-dark), var(--purple-bg));
    border-radius: 15px;
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-hover);
}

.play-button i {
    color: var(--light-text);
    font-size: 2rem;
    margin-left: 5px;
}

.video-overlay p {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Games Section */
.games-section {
    background: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.games-section h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: var(--purple-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--purple-light);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.game-card.locked {
    opacity: 0.7;
    position: relative;
}

.game-card.locked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.game-image {
    height: 200px;
    background: var(--purple-dark);
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card.locked .game-image::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 3;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.lock-overlay p {
    color: var(--light-text);
    font-size: 14px;
    text-align: center;
    max-width: 150px;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 15px;
    opacity: 0.8;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.game-info {
    padding: 25px;
    background: var(--purple-light);
}

.game-info h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.game-info p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 14px;
}

.btn-play {
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-play:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.game-card.locked .btn-play {
    background: var(--secondary-color);
    color: var(--dark-text);
}

.game-card.locked .btn-play:hover {
    background: #e6ac00;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
    background: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.bonus-content h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.bonus-content>p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.coin-icon {
    font-size: 3rem;
}

.amount {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-note {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.btn-bonus {
    background: var(--light-text);
    color: var(--primary-color);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-bonus:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Leaderboard Section */
.leaderboard-section {
    background: var(--darker-bg);
    padding: 80px 0;
    text-align: center;
}

.leaderboard-section h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.leaderboard-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.leaderboard-header {
    background: var(--purple-bg);
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    padding: 20px;
    font-weight: 700;
    color: var(--light-text);
    font-size: 1.1rem;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 80px 1fr 150px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.leaderboard-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.leaderboard-row:last-child {
    border-bottom: none;
}

.rank {
    font-weight: 700;
    color: var(--light-text);
    font-size: 1.2rem;
}

.player {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.score {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.leaderboard-footer {
    margin-top: 40px;
}

.btn-view-all {
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-all:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .registration-form {
        padding: 30px 20px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 60px 1fr 100px;
        padding: 15px;
        font-size: 0.9rem;
    }

    .bonus-amount {
        flex-direction: column;
        gap: 10px;
    }

    .amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .join-content h2,
    .video-content h2,
    .games-section h2,
    .bonus-content h2,
    .leaderboard-section h2 {
        font-size: 2rem;
    }

    .registration-form {
        padding: 25px 15px;
    }

    .video-placeholder {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}

/* Leaderboard Page Styles */
.leaderboard-categories {
    background: var(--darker-bg);
    padding: 120px 0 80px;
    text-align: center;
}

.leaderboard-categories h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px 30px;
    border: 2px solid var(--purple-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.category-card h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.prize-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.prize-amount {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.prize-icon {
    font-size: 2rem;
}

.prize-description {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Offers Page Styles */
.offers-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
    text-align: center;
}

.offers-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px 30px;
    border: 2px solid var(--purple-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.offer-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.offer-card h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.offer-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.offer-amount .amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.offer-amount .coin-icon {
    font-size: 1.5rem;
}

.bonus-type {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-offer {
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-offer:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-icon {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: var(--purple-dark);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-cta-secondary {
    background: var(--border-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: #555555;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {

    .leaderboard-categories h1,
    .offers-section h1 {
        font-size: 2.5rem;
    }

    .categories-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card,
    .offer-card {
        padding: 30px 20px;
    }

    .prize-amount,
    .offer-amount .amount {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .leaderboard-categories h1,
    .offers-section h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .offer-icon {
        font-size: 3rem;
    }

    .prize-amount,
    .offer-amount .amount {
        font-size: 1.8rem;
    }
}

/* About Us Page Styles */
.about-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
}

.about-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid var(--purple-light);
}

.welcome-card {
    grid-column: 1 / -1;
}

.mission-card,
.values-card {
    grid-column: span 1;
}

.about-card h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsible Play Page Styles */
.responsible-play-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
}

.responsible-play-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.responsible-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.responsible-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid var(--purple-light);
}

.responsible-card h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.responsible-card p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.guidelines-list li {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.guidelines-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.age-policy,
.support-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.age-policy h3,
.support-info h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.support-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.support-list li {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.support-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.support-list a:hover {
    text-decoration: underline;
}

/* FAQ Page Styles */
.faq-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
}

.faq-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: var(--purple-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--purple-light);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span:first-child {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-cta {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--purple-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-cta p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-contact-support {
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact-support:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Help Center Page Styles */
.help-center-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
}

.help-center-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.help-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--purple-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.help-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.help-card h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.help-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-view-details {
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.help-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.help-detail {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid var(--purple-light);
    display: none;
}

.help-detail.active {
    display: block;
}

.help-detail h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.help-subsection {
    margin-bottom: 30px;
}

.help-subsection:last-child {
    margin-bottom: 0;
}

.help-subsection h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.help-subsection p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.help-subsection ul {
    list-style: none;
    padding: 0;
}

.help-subsection ul li {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.help-subsection ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-assistance {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--purple-light);
    max-width: 600px;
    margin: 0 auto;
}

.help-assistance h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.help-assistance p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.assistance-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-view-faq {
    background: var(--border-color);
    color: var(--light-text);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-faq:hover {
    background: #555555;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {

    .about-section h1,
    .responsible-play-section h1,
    .faq-section h1,
    .help-center-section h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card,
    .responsible-card,
    .help-card,
    .help-detail,
    .faq-cta,
    .help-assistance {
        padding: 30px 20px;
    }

    .assistance-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-contact-support,
    .btn-view-faq {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .about-section h1,
    .responsible-play-section h1,
    .faq-section h1,
    .help-center-section h1 {
        font-size: 2rem;
    }

    .about-card h2,
    .responsible-card h2,
    .help-detail h2,
    .faq-cta h2,
    .help-assistance h2 {
        font-size: 1.8rem;
    }

    .help-icon {
        font-size: 3rem;
    }

    .faq-question span:first-child {
        font-size: 1.1rem;
    }
}

/* Contact Us Page Styles */
.contact-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
}

.contact-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid var(--purple-light);
}

.contact-form-card h2 {
    color: var(--light-text);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--input-border);
    border-radius: 8px;
    font-size: 16px;
    background: var(--darker-bg);
    color: var(--light-text);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send-message {
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-send-message:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.quick-links-card,
.response-time-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--purple-light);
}

.contact-info-card h3,
.quick-links-card h3,
.response-time-card h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-details p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.response-time-card p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Terms, Privacy, Cookie Policy Pages Styles */
.terms-section,
.privacy-section,
.cookie-section {
    background: var(--darker-bg);
    padding: 120px 0 80px;
}

.terms-section h1,
.privacy-section h1,
.cookie-section h1 {
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-weight: 700;
}

.terms-content,
.privacy-content,
.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-card,
.privacy-card,
.cookie-card {
    background: var(--purple-bg);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid var(--purple-light);
}

.terms-card h2,
.privacy-card h2,
.cookie-card h2 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-card p,
.privacy-card p,
.cookie-card p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-card p:last-child,
.privacy-card p:last-child,
.cookie-card p:last-child {
    margin-bottom: 0;
}

.terms-list,
.privacy-list,
.cookie-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.terms-list li,
.privacy-list li,
.cookie-list li {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-list li::before,
.privacy-list li::before,
.cookie-list li::before {
    content: '●';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-card a,
.privacy-card a,
.cookie-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-card a:hover,
.privacy-card a:hover,
.cookie-card a:hover {
    text-decoration: underline;
}

/* Cookie Categories */
.cookie-category {
    margin-bottom: 25px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cookie-category p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design for Contact and Policy Pages */
@media (max-width: 768px) {

    .contact-section h1,
    .terms-section h1,
    .privacy-section h1,
    .cookie-section h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-card,
    .contact-info-card,
    .quick-links-card,
    .response-time-card,
    .terms-card,
    .privacy-card,
    .cookie-card {
        padding: 30px 20px;
    }

    .contact-form-card h2,
    .terms-card h2,
    .privacy-card h2,
    .cookie-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {

    .contact-section h1,
    .terms-section h1,
    .privacy-section h1,
    .cookie-section h1 {
        font-size: 2rem;
    }

    .contact-form-card h2,
    .terms-card h2,
    .privacy-card h2,
    .cookie-card h2 {
        font-size: 1.4rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .btn-send-message {
        padding: 15px 30px;
        font-size: 1rem;
    }
}