/* 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: #333;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Styles */
.main-header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #4299e1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    position: relative;
}

.logo-section {
    flex-shrink: 0;
}

.site-logo {
    max-width: 208px;
    height: auto;
    transition: all 0.3s ease;
}

.primary-navigation {
    flex: 1;
    margin: 0 30px;
    position: relative;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #4299e1;
    color: white;
}

.dropdown-menu {
    position: relative;
}

/* Dropdown is closed by default */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a2332;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: none; /* Always hidden by default */
    list-style: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Active dropdown state - only shows when clicked */
.dropdown-menu.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #2d3748;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu.active .dropdown-arrow {
    transform: rotate(180deg);
}

.auth-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-register, .btn-login {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-register {
    background: #48bb78;
    color: white;
}

.btn-register:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
}

.btn-login:hover {
    background: #4299e1;
    color: white;
}

/* Mobile Menu Toggle - Positioned on Right */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
    flex-shrink: 0;
    order: 3; /* Ensure it's last in flex order */
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Styles */
.nav-menu.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: #1a2332;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 2px solid #4299e1;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.mobile-active li {
    width: 100%;
    margin-bottom: 5px;
}

.nav-menu.mobile-active a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    background: rgba(45, 55, 72, 0.5);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-menu.mobile-active a:hover {
    background: #4299e1;
    transform: translateX(5px);
}

/* Mobile dropdown - closed by default, opens on click */
.nav-menu.mobile-active .dropdown-content {
    position: static;
    display: none; /* Hidden by default on mobile too */
    box-shadow: none;
    background: rgba(45, 55, 72, 0.3);
    margin-top: 5px;
    margin-left: 20px;
    border-radius: 8px;
    opacity: 1;
    transform: none;
    transition: none;
}

/* Show mobile dropdown only when parent has active class */
.nav-menu.mobile-active .dropdown-menu.active .dropdown-content {
    display: block;
}

.nav-menu.mobile-active .dropdown-content a {
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 10px;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 30px;
}

.promo-highlight {
    background: linear-gradient(135deg, #48bb78, #38a169);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.promo-label {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.promo-code-container {
    display: flex;
    gap: 10px;
}

#promoCode {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    background: white;
}

.copy-button {
    padding: 12px 20px;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.copy-button:hover {
    background: #1a202c;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #4299e1;
    color: white;
}

.btn-primary:hover {
    background: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
}

.btn-secondary:hover {
    background: #4299e1;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Bonus Features Section */
.bonus-features {
    padding: 80px 0;
    background: rgba(26, 35, 50, 0.8);
}

.bonus-features h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    color: #4299e1;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.bonus-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Games Tabs Section */
.games-tabs-section {
    padding: 80px 0;
    background: rgba(15, 20, 25, 0.9);
}

.games-tabs-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    color: #cbd5e0;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.games-tabs-container {
    background: rgba(45, 55, 72, 0.8);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tabs-header {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    background: rgba(26, 35, 50, 0.6);
    padding: 8px;
    border-radius: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-header::-webkit-scrollbar {
    display: none;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    color: #a0aec0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: fit-content;
}

.tab-button:hover {
    background: rgba(66, 153, 225, 0.2);
    color: #4299e1;
}

.tab-button.active {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-text {
    font-size: 0.95rem;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.game-item {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-5px);
    border-color: #4299e1;
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.2);
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.game-item h4 {
    color: #e2e8f0;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.game-item p {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.game-item:hover h4,
.game-item:hover p {
    color: white;
}

/* Sports & Games Section */
.sports-games-section {
    padding: 80px 0;
}

.sports-games-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.sport-item {
    background: rgba(45, 55, 72, 0.8);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sport-item:hover {
    border-color: #4299e1;
    transform: scale(1.05);
}

.sport-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.sport-item h4 {
    color: #e2e8f0;
    margin-bottom: 10px;
}

.sport-item p {
    color: #a0aec0;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #2d3748);
}

.success-stories-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.big-wins-display {
    background: rgba(45, 55, 72, 0.9);
    border-radius: 16px;
    padding: 30px;
}

.big-wins-display h3 {
    color: #4299e1;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.wins-ticker {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.win-item {
    background: linear-gradient(135deg, #48bb78, #38a169);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: winPulse 2s infinite;
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.win-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    min-width: 140px;
}

.win-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-name {
    font-weight: 600;
    color: white;
}

.win-game {
    color: #e2e8f0;
    font-size: 0.9rem;
}

.win-time {
    color: #cbd5e0;
    font-size: 0.8rem;
}

.testimonials-section {
    background: rgba(45, 55, 72, 0.9);
    border-radius: 16px;
    padding: 30px;
}

.testimonials-section h3 {
    color: #4299e1;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: rgba(66, 153, 225, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4299e1;
}

.testimonial-content p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

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

.author-name {
    font-weight: 600;
    color: #e2e8f0;
}

.author-location {
    color: #a0aec0;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: rgba(45, 55, 72, 0.9);
    padding: 40px;
    border-radius: 16px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #4299e1;
    margin-bottom: 10px;
}

.stat-label {
    color: #cbd5e0;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: rgba(26, 35, 50, 0.8);
}

.why-choose-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
}

.feature-item h4 {
    color: #48bb78;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419, #1a2332);
}

.get-started-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #4299e1;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #e2e8f0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-highlight {
    background: #48bb78;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-block;
}

.get-started-cta {
    text-align: center;
}

.btn-get-started {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
}

.cta-note {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Security & Responsible Gaming Section */
.security-responsible-section {
    padding: 80px 0;
    background: rgba(26, 35, 50, 0.8);
}

.security-responsible-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.security-block, .responsible-gaming-block {
    background: rgba(45, 55, 72, 0.9);
    border-radius: 16px;
    padding: 40px;
}

.security-block h3, .responsible-gaming-block h3 {
    color: #4299e1;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.security-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.security-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.security-info h4 {
    color: #e2e8f0;
    margin-bottom: 8px;
}

.security-info p {
    color: #cbd5e0;
    line-height: 1.5;
}

.responsible-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.responsible-item {
    background: rgba(66, 153, 225, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #4299e1;
}

.responsible-item h4 {
    color: #4299e1;
    margin-bottom: 10px;
}

.responsible-item p {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.responsible-cta {
    text-align: center;
}

.btn-responsible {
    background: #4299e1;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.btn-responsible:hover {
    background: #3182ce;
}

.age-restriction {
    color: #e53e3e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: #0f1419;
    padding: 50px 0 20px;
    border-top: 2px solid #4299e1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.payment-methods {
    text-align: center;
    margin-bottom: 40px;
}

.payment-methods h3 {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #4299e1;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4299e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #718096;
}

/* Responsive Design Breakpoints */
/* 1080px Breakpoint */
@media (max-width: 1080px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .primary-navigation {
        position: relative;
        margin: 0;
        order: 2;
    }
    
    .auth-buttons {
        flex-direction: row;
        gap: 8px;
        order: 2; /* Auth buttons come before hamburger */
    }
    
    .mobile-menu-toggle {
        order: 3; /* Hamburger is last (rightmost) */
    }
    
    .logo-section {
        order: 1;
    }
    
    .site-logo {
        max-width: 180px;
    }
    
    .btn-register, .btn-login {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .success-container {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* 768px Breakpoint */
@media (max-width: 768px) {
    .site-logo {
        max-width: 150px;
    }
    
    .btn-register, .btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .auth-buttons {
        gap: 6px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsible-features {
        grid-template-columns: 1fr;
    }
    
    /* Fixed mobile centering for step items */
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center; /* Centers the step number */
    }
    
    .step-content {
        text-align: center; /* Centers the content text */
    }
    
    .tabs-header {
        justify-content: flex-start;
    }
    
    .tab-button {
        padding: 10px 12px;
        min-width: auto;
    }
    
    .tab-text {
        display: none;
    }
    
    .tab-icon {
        font-size: 1.4rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .game-item {
        padding: 20px;
    }
}

/* 480px Breakpoint */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    
    .site-logo {
        max-width: 120px;
    }
    
    .btn-register, .btn-login {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.5rem;
        padding: 6px;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-code-container {
        flex-direction: column;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .win-item {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .nav-menu.mobile-active {
        padding: 15px;
    }
    
    .nav-menu.mobile-active a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .games-tabs-container {
        padding: 20px;
    }
    
    .tabs-header {
        padding: 5px;
        gap: 5px;
    }
    
    .tab-button {
        padding: 8px 10px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile step items remain centered */
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px; /* Add space between number and content */
    }
}

/* 320px Breakpoint */
@media (max-width: 320px) {
    .site-logo {
        max-width: 100px;
    }
    
    .btn-register, .btn-login {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .bonus-features h2,
    .sports-games-section h2,
    .why-choose-section h2,
    .success-stories-section h2,
    .get-started-section h2,
    .security-responsible-section h2,
    .games-tabs-section h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 5px;
    }
    
    .nav-menu.mobile-active {
        padding: 10px;
    }
    
    .nav-menu.mobile-active a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .games-tabs-container {
        padding: 15px;
    }
    
    .tab-button {
        padding: 6px 8px;
    }
    
    /* Ensure mobile centering is maintained at smallest breakpoint */
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Enhanced Mobile Menu Animation */
@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.nav-menu.mobile-closing {
    animation: slideUp 0.3s ease forwards;
}

/* Smooth transitions for responsive elements */
@media (prefers-reduced-motion: no-preference) {
    .site-logo,
    .btn-register,
    .btn-login,
    .auth-buttons {
        transition: all 0.3s ease;
    }
}


/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(15, 20, 25, 0.9);
}

.about-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text {
    background: rgba(45, 55, 72, 0.8);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #4299e1;
}

.about-text p {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.company-info {
    background: rgba(45, 55, 72, 0.8);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #4299e1;
}

.company-info h3 {
    color: #4299e1;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 8px;
    border-left: 3px solid #48bb78;
}

.info-label {
    font-weight: 600;
    color: #48bb78;
    font-size: 0.9rem;
}

.info-value {
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design for About Section */
@media (max-width: 1080px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        padding: 30px;
    }
    
    .company-info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: 25px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .info-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .company-info {
        padding: 15px;
    }
    
    .info-item {
        padding: 10px;
    }
}

