/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text span {
    color: #ffcc00;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover {
    color: #ffcc00;
    background-color: rgba(255, 255, 255, 0.1);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.login-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.login-btn:hover {
    background: white;
    color: #1a237e;
}

.register-btn {
    background: #ffcc00;
    color: #1a237e;
    border: 2px solid #ffcc00;
}

.register-btn:hover {
    background: #ffd700;
    border-color: #ffd700;
}

/* Logo Upload Section */
.logo-upload-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo-upload-section h2 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 24px;
}

.upload-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.upload-input {
    padding: 10px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.upload-button {
    background: linear-gradient(to right, #1a237e, #283593);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.upload-button:hover {
    background: linear-gradient(to right, #283593, #1a237e);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(40, 53, 147, 0.8)), url('https://sloto69masuk.online/sloto69/assets/free-30k-50k-100k.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.content-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    color: #1a237e;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Result Section */
.result-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-section h2 {
    color: #1a237e;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.result-highlight {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.result-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border-left: 4px solid #1a237e;
}

.result-item h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 18px;
}

.result-number {
    font-size: 24px;
    font-weight: bold;
    color: #da1b60;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background-color: #1a237e;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    color: #1a237e;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.promo-banner {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.promo-banner h3 {
    color: white;
    border-bottom: none;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #1a237e;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ccc;
}

/* DMCA Section */
.dmca-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dmca-badge {
    text-align: center;
    margin: 20px 0;
}

.dmca-badge img {
    max-width: 150px;
    height: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-submit {
    background: linear-gradient(to right, #1a237e, #283593);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s;
}

.form-submit:hover {
    background: linear-gradient(to right, #283593, #1a237e);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.form-footer a {
    color: #1a237e;
    text-decoration: none;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-category {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-category h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

.game-category p {
    color: #666;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 40px;
    color: #1a237e;
    margin-bottom: 15px;
}

.feature h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .auth-buttons {
        margin-top: 15px;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
}
/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 30px;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* Games Grid */
.games-grid, .help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.game-card, .help-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #1a237e;
    transition: transform 0.3s;
}

.game-card:hover, .help-card:hover {
    transform: translateY(-5px);
}

.game-card h3, .help-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

.game-card h3 a, .help-card h3 a {
    color: inherit;
    text-decoration: none;
}

.game-card h3 a:hover, .help-card h3 a:hover {
    color: #ffcc00;
}

.game-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.game-card li {
    margin-bottom: 5px;
    color: #666;
}

/* Provider Grid */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.provider-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.provider-card h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #ffcc00;
}

.faq-item h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Active Navigation */
nav ul li a.active {
    color: #ffcc00;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }
    
    .games-grid, .help-grid, .provider-grid {
        grid-template-columns: 1fr;
    }
}
/* Additional Styles for All Pages */

/* Terms Navigation */
.terms-nav, .tutorial-nav, .faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.terms-tab, .tutorial-tab, .faq-category {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.terms-tab.active, .tutorial-tab.active, .faq-category.active {
    background: #1a237e;
    color: white;
    border-color: #1a237e;
}

.terms-tab:hover, .tutorial-tab:hover, .faq-category:hover {
    background: #e9ecef;
}

/* Terms Content */
.terms-content, .tutorial-content, .faq-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.term-section, .privacy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.term-section:last-child, .privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.term-section h3, .privacy-section h2, .privacy-subsection h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

.privacy-subsection {
    margin-bottom: 25px;
}

.privacy-subsection ul {
    padding-left: 20px;
}

.privacy-subsection li {
    margin-bottom: 8px;
    color: #555;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a237e;
}

.step-number {
    background: #1a237e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

/* Game Types & Bet Types */
.game-types, .bet-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.game-type, .bet-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.game-type h4, .bet-type h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

/* Hand Ranking */
.hand-ranking {
    padding-left: 20px;
    margin: 20px 0;
}

.hand-ranking li {
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

/* Important Notes */
.important-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.note {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

.note h4 {
    color: #1a237e;
    margin-bottom: 10px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.contact-method h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

.contact-btn {
    background: #1a237e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #283593;
}

/* Support Contacts */
.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.support-contact {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Game List & Features */
.game-list, .game-features, .market-list, .game-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.game-list span, .game-features span, .market-list span, .game-details span {
    background: #e9ecef;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #495057;
}

/* Tournament Schedule */
.tournament-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.tournament {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffcc00;
}

.tournament h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

.tournament .prize {
    color: #28a745;
    font-weight: bold;
    margin-top: 10px;
}

/* Leaderboard */
.leaderboard {
    margin: 20px 0;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 5px;
}

.rank {
    background: #1a237e;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.player {
    flex: 1;
    font-weight: 500;
}

.points {
    color: #28a745;
    font-weight: bold;
}

/* Terms Acknowledgment */
.terms-acknowledgment {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.terms-acknowledgment h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

.terms-acknowledgment ul {
    padding-left: 20px;
    margin-top: 15px;
}

.terms-acknowledgment li {
    margin-bottom: 8px;
    color: #555;
}

/* Privacy Update */
.privacy-update {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
    text-align: center;
    border-left: 4px solid #1a237e;
}

.contact-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

/* Tips List */
.tips-list {
    padding-left: 20px;
    margin: 20px 0;
}

.tips-list li {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid #ffcc00;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.sport-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #1a237e;
}

.sport-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

/* Poker Games */
.poker-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.poker-game {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #ffcc00;
}

.poker-game h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.help-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #1a237e;
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

.help-card h3 a {
    color: inherit;
    text-decoration: none;
}

.help-card h3 a:hover {
    color: #ffcc00;
}

.help-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.help-card li {
    margin-bottom: 8px;
    color: #666;
}

/* FAQ Categories */
.faq-categories {
    justify-content: center;
    margin-bottom: 40px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #ffcc00;
}

.faq-item h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-support {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.contact-support h2 {
    color: #1a237e;
    margin-bottom: 15px;
}

.privacy-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1a237e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-nav, .tutorial-nav, .faq-categories {
        flex-direction: column;
    }
    
    .steps {
        gap: 15px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .game-types, .bet-types, .sports-grid, .poker-games, .help-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .notes {
        grid-template-columns: 1fr;
    }
}
/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #1a237e;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1a237e;
}

/* Game Links */
.game-link {
    display: inline-block;
    margin-top: 15px;
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.game-link:hover {
    color: #ffcc00;
}

/* Quick Links Section */
.quick-links-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-link-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1a237e;
    transition: transform 0.3s;
}

.quick-link-card:hover {
    transform: translateY(-5px);
}

.quick-link-card h3 {
    margin-bottom: 10px;
}

.quick-link-card h3 a {
    color: #1a237e;
    text-decoration: none;
}

.quick-link-card h3 a:hover {
    color: #ffcc00;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.cta-banner h3 {
    color: white;
    margin-bottom: 10px;
}

.cta-banner .cta-button {
    margin-top: 15px;
}

/* Promo Button */
.promo-btn {
    display: inline-block;
    background: #ffcc00;
    color: #1a237e;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s;
}

.promo-btn:hover {
    background: #ffd700;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.promo-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #ffcc00;
}

.promo-item h4 {
    color: #1a237e;
    margin-bottom: 10px;
}

/* Download Button */
.download-btn {
    display: block;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #218838;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    background: #f8f9fa;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #1a237e;
    color: white;
}

/* Footer CTA */
.footer-cta {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-login-btn, .footer-register-btn {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.footer-login-btn {
    background: transparent;
    color: #ffcc00;
    border: 1px solid #ffcc00;
}

.footer-login-btn:hover {
    background: #ffcc00;
    color: #1a237e;
}

.footer-register-btn {
    background: #ffcc00;
    color: #1a237e;
    border: 1px solid #ffcc00;
}

.footer-register-btn:hover {
    background: #ffd700;
    border-color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 10px;
    }
    
    .footer-cta {
        flex-direction: column;
    }
    
    .footer-login-btn, .footer-register-btn {
        text-align: center;
    }
}