/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

/* Auth buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: #ffd700;
    color: #000;
}

.btn-register {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
}

.btn-bonus {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    margin-top: 15px;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 107, 53, 0.3);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
}

/* Bonuses */
.bonuses {
    background: rgba(0, 0, 0, 0.3);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.bonus-amount {
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Games */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.game-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.game-card p {
    color: #ccc;
}

/* Features */
.features {
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.feature p {
    color: #ccc;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-section a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .auth-buttons {
        display: none; /* Hide auth buttons on mobile */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bonus-grid,
    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
        overflow-x: auto; /* Enable horizontal scrolling for tables */
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Mobile menu auth buttons */
    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-auth-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .bonus-card,
    .game-card {
        padding: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading optimization */
img {
    max-width: 100%;
    height: auto;
}

/* ===== NEW CONTENT STYLES ===== */

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.highlight-item h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight-item p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: rgba(0, 0, 0, 0.4);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ffd700;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.testimonial-content p {
    color: #fff;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
}

.author-rating {
    color: #ffd700;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.cta-buttons .btn:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===== AUTOMATIC TEXT STYLES ===== */

/* Any new text content with these classes will automatically be styled */
.content-text {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.content-text.highlight {
    color: #ffd700;
    font-weight: 600;
}

.content-text.large {
    font-size: 1.3rem;
    line-height: 1.6;
}

.content-text.small {
    font-size: 0.9rem;
    color: #888;
}

.content-text.centered {
    text-align: center;
}

.content-text.bold {
    font-weight: 700;
    color: #fff;
}

.content-text.italic {
    font-style: italic;
    color: #ccc;
}

/* Responsive adjustments for new content */
@media (max-width: 768px) {
    .highlights-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 30px 20px;
    }
    
    .highlight-icon {
        font-size: 3rem;
    }
    
    .highlight-item h3 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .highlights,
    .testimonials,
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
}

/* ===== TABLE STYLES ===== */
.table-wrapper {
    position: relative;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

table thead {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

table th {
    padding: 15px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

table td {
    padding: 12px 15px;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

table tbody tr:hover {
    background: rgba(255, 107, 53, 0.1);
    transition: background 0.3s ease;
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== LIST STYLES ===== */
ul {
    margin: 15px 0;
    padding-left: 20px;
}

ul li {
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 1rem;
}

ul li::marker {
    color: #ff6b35;
}

/* ===== RESPONSIVE TABLE STYLES ===== */
@media (max-width: 768px) {
    .table-wrapper::after {
        content: '← Scroll →';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        color: #ff6b35;
        font-size: 0.8rem;
        font-weight: 500;
        opacity: 0.8;
    }
    
    table {
        font-size: 0.9rem;
        min-width: 600px; /* Ensure minimum width for readability */
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    table th,
    table td {
        padding: 10px 8px;
        white-space: nowrap; /* Keep content on single line */
    }
    
    table th {
        font-size: 0.9rem;
    }
    
    table td {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 0.8rem;
        min-width: 500px;
    }
    
    table th,
    table td {
        padding: 8px 6px;
    }
    
    table th {
        font-size: 0.8rem;
    }
    
    table td {
        font-size: 0.75rem;
    }
} 