/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: url('websitebackground.png') center center fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

/* Ensure all main content is above the overlay */
header, main, footer {
    position: relative;
    z-index: 2;
}

/* Header Styles */
header {
    background: rgba(11, 11, 11, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #D30000;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #D30000; /* Red accent */
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo:hover {
    color: #FF4500;
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(211, 0, 0, 0.1);
    border: 1px solid #D30000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: rgba(211, 0, 0, 0.2);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: #D30000;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
nav.nav-menu {
    display: flex;
    gap: 2rem;
}

nav.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

nav.nav-menu a:hover {
    color: #D30000;
    background: rgba(211, 0, 0, 0.1);
}

nav.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #D30000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav.nav-menu a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    padding-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Standardized CTA Button Styles */
.cta-button,
.games-cta-button,
.offers-cta-button,
.play-now-btn {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(211, 0, 0, 0.4);
    min-width: 300px;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.games-cta-button:hover,
.offers-cta-button:hover,
.play-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 0, 0, 0.5),
                 0 0 20px rgba(255, 69, 0, 0.6),
                 0 0 40px rgba(211, 0, 0, 0.3);
    background: linear-gradient(45deg, #B00000, #E63900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                  0 0 8px rgba(255, 255, 255, 0.4);
}

/* Secondary CTA Button */
.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #D30000;
    box-shadow: 0 4px 15px rgba(211, 0, 0, 0.3);
}

.cta-button.secondary:hover {
    background: #D30000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 0, 0, 0.4);
}

/* Smaller CTA buttons for specific sections */
.play-now-btn {
    min-width: 150px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.games-cta-button,
.offers-cta-button {
    min-width: 250px;
    padding: 1.3rem 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f0f0f0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.feature:hover {
    color: #D30000;
}

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

.feature span:last-child {
    font-weight: 500;
}

/* Games Section */
.games-section {
    padding: 4rem 2rem;
}

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

.section-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

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

.game-card {
    background: rgba(60, 60, 60, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 500px;
    min-height: 500px;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 0, 0, 0.15);
    border-color: #D30000;
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    flex-shrink: 0;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

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

.game-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.game-category {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(211, 0, 0, 0.3);
}

.game-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.game-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.game-provider {
    color: #D30000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-review {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-stats {
    margin-bottom: 1.5rem;
    text-align: center;
}

.rtp {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(211, 0, 0, 0.3);
    display: inline-block;
    margin-top: 0.5rem;
}

/* Play Button with Red-to-Orange Gradient */
.play-button {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(211, 0, 0, 0.3);
    margin-top: auto;
    flex-shrink: 0;
}

.play-button:hover {
    background: linear-gradient(45deg, #B00000, #E63900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 0, 0, 0.3),
                0 0 15px rgba(255, 69, 0, 0.5),
                0 0 30px rgba(211, 0, 0, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 6px rgba(255, 255, 255, 0.3);
}

.play-button:active {
    transform: translateY(0);
}

/* Offers Section */
.offers-section {
    padding: 4rem 2rem;
}

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

.offer-card {
    background: rgba(60, 60, 60, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 0, 0, 0.15);
    border-color: #D30000;
}

.offer-card h3 {
    color: #D30000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Offer Button with Red-to-Orange Gradient */
.offer-button {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px; /* Slightly rounded corners */
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(211, 0, 0, 0.3);
}

.offer-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(211, 0, 0, 0.3),
                0 0 15px rgba(255, 69, 0, 0.5),
                0 0 30px rgba(211, 0, 0, 0.2);
    background: linear-gradient(45deg, #B00000, #E63900); /* Darkened gradient on hover */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 6px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    border-top: 2px solid #D30000;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 0;
}

.footer-title {
    color: #D30000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.footer-heading {
    color: #D30000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    display: inline-block;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #D30000;
    opacity: 1;
    transform: translateX(5px);
}

/* License Badge */
.license-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(211, 0, 0, 0.1);
    border: 2px solid #D30000;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.license-badge:hover {
    background: rgba(211, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 0, 0, 0.2);
}

.license-icon {
    font-size: 1.5rem;
    color: #D30000;
}

.license-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.license-title {
    color: #D30000;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.license-subtitle {
    color: #ffffff;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(211, 0, 0, 0.1);
    border: 1px solid #D30000;
    border-radius: 50%;
    color: #D30000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: #D30000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 0, 0, 0.3),
                0 0 10px rgba(255, 69, 0, 0.4),
                0 0 20px rgba(211, 0, 0, 0.2);
}

/* Contact Info */
.contact-info p {
    color: #cccccc;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #C9A66B;
}

.separator {
    color: #555;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
    
    .hero {
        background-attachment: scroll; /* Disable fixed attachment on mobile */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .header-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav.nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    
    nav.nav-menu.active {
        left: 0;
    }
    
    nav.nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 10px;
        background: rgba(211, 0, 0, 0.1);
        border: 1px solid rgba(211, 0, 0, 0.3);
        transition: all 0.3s ease;
        width: 80%;
        text-align: center;
        max-width: 300px;
    }
    
    nav.nav-menu a:hover {
        background: rgba(211, 0, 0, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(211, 0, 0, 0.3);
    }
    
    nav.nav-menu a::after {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        margin-bottom: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .offers-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .offer-item {
        text-align: center;
    }
    
    .offer-icon {
        margin: 0 auto 1rem;
    }
    
    .offer-item h3 {
        font-size: 1.3rem;
    }
    
    .offer-item p {
        font-size: 0.9rem;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-info h3 {
        font-size: 1.2rem;
    }
    
    .game-review {
        font-size: 0.85rem;
    }
    
    .play-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .bonus-offer {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .bonus-header h2 {
        font-size: 1.8rem;
    }
    
    .bonus-tagline {
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .bonus-main {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .bonus-main h3 {
        font-size: 1.3rem;
    }
    
    .bonus-terms {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .bonus-terms h4 {
        font-size: 1.1rem;
    }
    
    .terms-list li {
        font-size: 0.9rem;
    }
    
    .bonus-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .responsible-gaming {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .responsible-gaming p {
        font-size: 0.9rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .license-badge {
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .game-card {
        margin-bottom: 1rem;
        height: 450px;
        min-height: 450px;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .hero-badge span {
        font-size: 0.8rem;
    }

    .cta-button.primary,
    .cta-button.secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .game-image {
        height: 150px;
    }

    .game-info {
        padding: 1rem;
    }

    .game-info h3 {
        font-size: 1.1rem;
    }

    .game-review {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .play-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .offers-row {
        gap: 1rem;
    }

    .offer-item {
        padding: 1rem;
    }

    .offer-icon {
        font-size: 2rem;
    }

    .offer-item h3 {
        font-size: 1rem;
    }

    .offer-item p {
        font-size: 0.8rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom-content {
        gap: 0.5rem;
    }

    .footer-bottom-links {
        gap: 0.3rem;
    }

    .separator {
        font-size: 0.7rem;
    }

    .badge-placeholder {
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .logo-img {
        height: 35px;
    }

    /* Welcome Bonus Small Mobile Styles */
    .welcome-bonus {
        padding: 1rem;
        margin: 0.5rem 0;
    }

    .bonus-header {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .bonus-tagline {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
        margin: 0.3rem 0;
    }
    
    .bonus-main {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .bonus-main h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .bonus-terms {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .bonus-terms h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .terms-list li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        padding-left: 1.2rem;
    }
    
    .bonus-cta {
        padding: 0.8rem;
    }
    
    .offers-cta-button,
    .cta-button.secondary {
        max-width: 250px;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Page Hero Mobile Styles */
.page-hero {
    height: 300px;
    background-attachment: scroll;
}

.page-hero h1 {
    font-size: 2rem;
}

.page-hero p {
    font-size: 1rem;
}

/* About Page Mobile Styles */
.about-page-section {
    padding: 2rem 1rem;
}

.about-page-section .about-content p {
    font-size: 1rem;
}

/* Security Page Mobile Styles */
.security-page-section {
    padding: 2rem 1rem;
}

.security-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.security-icon {
    font-size: 2.5rem;
}

.security-section h2 {
    font-size: 1.5rem;
}

.security-section p {
    font-size: 1rem;
}

.trust-indicators h3 {
    font-size: 2rem;
}

.trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.trust-item {
    padding: 1.5rem;
}

.trust-icon {
    font-size: 2rem;
}

.trust-item h4 {
    font-size: 1.1rem;
}

.trust-item p {
    font-size: 0.9rem;
}

/* About Page Section */
.about-page-section {
    padding: 4rem 2rem;
}

.about-page-section .about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-page-section .about-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.about-page-section .about-content p:last-child {
    margin-bottom: 0;
}

/* Security Page Section */
.security-page-section {
    padding: 4rem 2rem;
}

.security-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 15px;
    text-align: center;
}

.security-section:last-of-type {
    margin-bottom: 3rem;
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.security-section h2 {
    color: #D30000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.security-section p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.security-section p:last-child {
    margin-bottom: 0;
}

/* Trust Indicators */
.trust-indicators {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-indicators h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

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

.trust-item {
    border: 1px solid #D30000;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 0, 0, 0.2);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h4 {
    color: #D30000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.trust-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Promotions Page Styles */
.promotions-section {
    padding: 3rem 2rem;
}

.promotions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.promotion-card {
    background: rgba(60, 60, 60, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 0, 0, 0.2);
    border-color: #D30000;
}

.promotion-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 51.67%; /* 1500x775 ratio */
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
}

.promotion-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.promotion-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    background: rgba(40, 40, 40, 0.95);
}

.promotion-content h3 {
    color: #D30000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.promotion-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.promotion-button {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(211, 0, 0, 0.3);
    max-width: 250px;
    margin: 0 auto;
    margin-top: auto;
}

.promotion-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(211, 0, 0, 0.3),
                 0 0 15px rgba(255, 69, 0, 0.5),
                 0 0 30px rgba(211, 0, 0, 0.2);
    background: linear-gradient(45deg, #B00000, #E63900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                  0 0 6px rgba(255, 255, 255, 0.4);
}

/* Active Navigation State */
nav.nav-menu a.active {
    color: #D30000;
    background: rgba(211, 0, 0, 0.1);
}

nav.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Styles for Promotions */
@media (max-width: 992px) {
    .promotions-section {
        padding: 2.5rem 1.5rem;
    }
    
    .promotions-grid {
        gap: 2.5rem;
    }
    
    .promotion-content {
        padding: 2.5rem;
    }
    
    .promotion-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .promotion-content p {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }
    
    /* CTA Responsive */
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 2rem 1rem;
    }
    
    .promotions-grid {
        gap: 2rem;
    }
    
    .promotion-content {
        padding: 2rem;
    }
    
    .promotion-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .promotion-content p {
        font-size: 0.95rem;
        -webkit-line-clamp: 3;
    }
    
    /* CTA Responsive */
    .cta-section {
        padding: 2.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 1.5rem 0.5rem;
    }
    
    .promotions-grid {
        gap: 1.5rem;
    }
    
    .promotion-content {
        padding: 1.5rem;
    }
    
    .promotion-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .promotion-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
    
    /* CTA Responsive */
    .cta-section {
        padding: 2rem 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1.1rem 1.8rem;
        font-size: 0.95rem;
        min-width: 200px;
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, rgba(211, 0, 0, 0.1), rgba(255, 69, 0, 0.1));
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(211, 0, 0, 0.2);
    border-bottom: 1px solid rgba(211, 0, 0, 0.2);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #D30000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(211, 0, 0, 0.4);
    min-width: 300px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 0, 0, 0.5),
                 0 0 20px rgba(255, 69, 0, 0.6),
                 0 0 40px rgba(211, 0, 0, 0.3);
    background: linear-gradient(45deg, #B00000, #E63900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                  0 0 8px rgba(255, 255, 255, 0.4);
}

/* Page Hero Section */
.page-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-hero .hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    color: #e0e0e0;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Games Call to Action */
.games-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(211, 0, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(211, 0, 0, 0.2);
}

.games-cta h3 {
    color: #D30000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.games-cta p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.games-cta-button {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(211, 0, 0, 0.4);
    min-width: 250px;
}

.games-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(211, 0, 0, 0.5),
                 0 0 20px rgba(255, 69, 0, 0.6),
                 0 0 40px rgba(211, 0, 0, 0.3);
    background: linear-gradient(45deg, #B00000, #E63900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                  0 0 8px rgba(255, 255, 255, 0.4);
}

/* Responsive Styles for Games */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .game-card {
        min-height: 400px;
    }
    
    .game-info {
        padding: 1.2rem;
    }
    
    .game-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .game-review {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
    
    /* Games CTA Responsive */
    .games-cta {
        margin-top: 2.5rem;
        padding: 2.5rem 1.5rem;
    }
    
    .games-cta h3 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .games-cta p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 2rem 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-card {
        min-height: 350px;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .game-review {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }
    
    /* Games CTA Responsive */
    .games-cta {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    
    .games-cta h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .games-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 1.5rem 0.5rem;
    }
    
    .games-grid {
        gap: 1rem;
    }
    
    .game-card {
        min-height: 320px;
    }
    
    .game-info {
        padding: 0.8rem;
    }
    
    .game-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .game-review {
        font-size: 0.8rem;
        -webkit-line-clamp: 3;
    }
    
    /* Games CTA Responsive */
    .games-cta {
        margin-top: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
    
    .games-cta h3 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .games-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

/* Offers Call to Action */
.offers-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(211, 0, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(211, 0, 0, 0.2);
}

.offers-cta h3 {
    color: #D30000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.offers-cta p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offers-cta-button {
    background: linear-gradient(45deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(211, 0, 0, 0.3);
}

.offers-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(211, 0, 0, 0.3),
                 0 0 15px rgba(255, 69, 0, 0.5),
                 0 0 30px rgba(211, 0, 0, 0.2);
    background: linear-gradient(45deg, #B00000, #E63900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                  0 0 6px rgba(255, 255, 255, 0.4);
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(211, 0, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    pointer-events: none;
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Progress Chart Styles */
.progress-chart-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* SVG Progress Circle Animation */
.progress-chart circle:last-child {
    animation: progressFill 2s ease-in-out forwards;
    stroke-dashoffset: 534.07;
}

@keyframes progressFill {
    to {
        stroke-dashoffset: 26.7; /* 95% of 534.07 */
    }
}

/* Progress Chart Glow Animation */
.progress-chart-container {
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(211, 0, 0, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 40px rgba(211, 0, 0, 0.6));
    }
}

.progress-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 900;
    color: #D30000;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.5);
}

.pie-chart {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(211, 0, 0, 0.3);
    animation: pieGlow 2s ease-in-out infinite alternate;
    overflow: hidden;
}

.pie-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, #D30000 0deg, #D30000 342deg, #333 342deg, #333 360deg);
    border-radius: 50%;
    animation: pieRotate 3s ease-in-out infinite;
}

@keyframes pieRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes pieGlow {
    0% { box-shadow: 0 0 30px rgba(211, 0, 0, 0.3); }
    100% { box-shadow: 0 0 50px rgba(211, 0, 0, 0.5); }
}

.pie-center {
    width: 140px;
    height: 140px;
    background: #0b0b0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #D30000;
    border: 3px solid #D30000;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.counter {
    font-size: 3.5rem;
    font-weight: 900;
    color: #D30000;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.5);
}

.stats-text {
    flex: 1;
    text-align: left;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #D30000;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.3);
}

.stats-description {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.stats-bar {
    width: 100%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D30000 0%, #FF4500 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design for Statistics */
@media (max-width: 992px) {
    .stats-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .stats-visual {
        flex: none;
    }
    
    .stats-text {
        text-align: center;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 3rem 0;
    }
    
    .pie-chart {
        width: 200px;
        height: 200px;
    }
    
    .pie-center {
        width: 110px;
        height: 110px;
        font-size: 2.5rem;
    }
    
    .counter {
        font-size: 2.8rem;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
    
    .stats-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 2rem 0;
    }
    
    .pie-chart {
        width: 160px;
        height: 160px;
    }
    
    .pie-center {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .counter {
        font-size: 2.3rem;
    }
    
    .stats-title {
        font-size: 1.5rem;
    }
    
    .stats-description {
        font-size: 0.9rem;
    }
    
    .stats-bar {
        height: 15px;
    }
}

/* Age Warning Section */
.age-warning {
    background: linear-gradient(135deg, rgba(211, 0, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 2px solid #D30000;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    animation: warningPulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(211, 0, 0, 0.2);
}

.age-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: warningShimmer 4s infinite;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(211, 0, 0, 0.2);
        border-color: #D30000;
    }
    50% {
        box-shadow: 0 0 30px rgba(211, 0, 0, 0.4);
        border-color: #FF4500;
    }
}

@keyframes warningShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.age-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    font-size: 2.5rem;
    animation: warningBounce 2s ease-in-out infinite;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.warning-content {
    flex: 1;
}

.warning-title {
    color: #D30000;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(211, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(211, 0, 0, 0.5), 0 0 20px rgba(255, 69, 0, 0.3);
    }
}

.warning-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Age Warning */
@media (max-width: 768px) {
    .age-warning {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .warning-icon {
        font-size: 2rem;
    }
    
    .warning-title {
        font-size: 1.1rem;
    }
    
    .warning-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .age-warning {
        padding: 1rem;
        margin-top: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .warning-icon {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .warning-title {
        font-size: 1rem;
    }
    
    .warning-text {
        font-size: 0.85rem;
    }
}

/* Why Play with Woospin Section */
.why-woospin-section {
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    padding: 4rem 0;
    position: relative;
}

.why-woospin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(211, 0, 0, 0.05) 0%, rgba(255, 69, 0, 0.05) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(211, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #D30000;
    box-shadow: 0 10px 30px rgba(211, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    color: #D30000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.3);
}

.benefit-description {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design for Why Play with Woospin */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.8rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-woospin-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-woospin-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.2rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
}

/* RTP Statistic Section */
.rtp-statistic {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid rgba(211, 0, 0, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.rtp-statistic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.1), transparent);
    animation: rtpShimmer 3s infinite;
}

@keyframes rtpShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.rtp-content {
    position: relative;
    z-index: 2;
}

.rtp-number {
    font-size: 4rem;
    font-weight: 900;
    color: #D30000;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(211, 0, 0, 0.5);
    animation: rtpGlow 2s ease-in-out infinite alternate;
}

@keyframes rtpGlow {
    0% {
        text-shadow: 0 0 20px rgba(211, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(211, 0, 0, 0.7), 0 0 40px rgba(255, 69, 0, 0.3);
    }
}

.rtp-counter {
    display: inline-block;
    min-width: 120px;
}

.rtp-title {
    color: #D30000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(211, 0, 0, 0.3);
}

.rtp-description {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for RTP Statistic */
@media (max-width: 768px) {
    .rtp-statistic {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .rtp-number {
        font-size: 3rem;
    }
    
    .rtp-counter {
        min-width: 90px;
    }
    
    .rtp-title {
        font-size: 1.5rem;
    }
    
    .rtp-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rtp-statistic {
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
    }
    
    .rtp-number {
        font-size: 2.5rem;
    }
    
    .rtp-counter {
        min-width: 80px;
    }
    
    .rtp-title {
        font-size: 1.3rem;
    }
    
    .rtp-description {
        font-size: 0.9rem;
    }
}

/* Additional Responsive Styles for Progress Chart */
@media (max-width: 768px) {
    .progress-chart-container {
        width: 200px;
        height: 200px;
    }
    
    .progress-center {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .progress-chart-container {
        width: 160px;
        height: 160px;
    }
    
    .progress-center {
        font-size: 2.3rem;
    }
}

/* Trust & Trending Section */
.trust-trending-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 4rem 0;
    position: relative;
}

.trust-trending-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.trust-trending-section .container {
    position: relative;
    z-index: 2;
}

/* Trust Badges Row */
.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(211, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-5px);
    border-color: #D30000;
    box-shadow: 0 10px 30px rgba(211, 0, 0, 0.3);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.badge-content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-content p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Trending Pokies Row */
.trending-pokies-row {
    margin: 4rem 0;
}

.trending-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.trending-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.trending-game {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(211, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trending-game:hover {
    transform: translateY(-5px);
    border-color: #D30000;
    box-shadow: 0 15px 40px rgba(211, 0, 0, 0.3);
}

.game-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.trending-game:hover .game-thumbnail img {
    transform: scale(1.05);
}

.game-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(211, 0, 0, 0.9);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-info {
    padding: 1.5rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.game-title-section h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.game-provider {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f0f0f0;
    font-size: 0.85rem;
}

.stat-icon {
    font-size: 1rem;
}

.game-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(211, 0, 0, 0.2);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(211, 0, 0, 0.3);
}

.play-now-btn {
    background: linear-gradient(135deg, #D30000, #FF4500);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 0, 0, 0.3);
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 0, 0, 0.4);
    background: linear-gradient(135deg, #FF4500, #D30000);
}

/* Closing Summary */
.closing-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(211, 0, 0, 0.1);
    border: 1px solid rgba(211, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.closing-summary p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Trust & Trending Section */
@media (max-width: 1024px) {
    .trust-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trending-games {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-trending-section {
        padding: 3rem 0;
    }
    
    .trust-badges-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .trust-badge {
        padding: 1.5rem;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .badge-content h4 {
        font-size: 1.2rem;
    }
    
    .trending-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .trending-games {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .play-now-btn {
        text-align: center;
    }
    
    .closing-summary {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .closing-summary p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-trending-section {
        padding: 2rem 0;
    }
    
    .trust-badge {
        padding: 1rem;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .badge-content h4 {
        font-size: 1.1rem;
    }
    
    .badge-content p {
        font-size: 0.8rem;
    }
    
    .trending-title {
        font-size: 1.8rem;
    }
    
    .game-thumbnail {
        height: 150px;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-title-section h4 {
        font-size: 1.2rem;
    }
    
    .game-features {
        justify-content: center;
    }
    
    .closing-summary {
        padding: 1rem;
    }
    
    .closing-summary p {
        font-size: 0.9rem;
    }
}

/* Mobile Optimization - Ensure Perfect Fit */
@media (max-width: 768px) {
    /* Base Mobile Optimizations */
    body {
        overflow-x: hidden;
        width: 100%;
        min-width: 320px;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Header Mobile Optimization */
    .header-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    /* Games Section Mobile Optimization */
    .games-section {
        padding: 2rem 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .game-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .game-image {
        height: 200px;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .game-review {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Trust & Trending Section Mobile Optimization */
    .trust-trending-section {
        padding: 2rem 1rem;
    }
    
    .trust-badges-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .trust-badge {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .badge-content h4 {
        font-size: 1.1rem;
    }
    
    .badge-content p {
        font-size: 0.85rem;
    }
    
    .trending-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .trending-games {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .trending-game {
        width: 100%;
        max-width: 100%;
    }
    
    .game-thumbnail {
        height: 180px;
    }
    
    .game-info {
        padding: 1rem;
    }
    
    .game-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .game-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .play-now-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .game-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    /* Why Woospin Section Mobile Optimization */
    .why-woospin-section {
        padding: 2rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Welcome Bonus Section Mobile Optimization */
    .welcome-bonus {
        padding: 1.5rem;
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .bonus-content {
        max-width: 100%;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .bonus-offer {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        align-items: stretch;
        width: 100%;
        grid-template-columns: 1fr !important;
    }
    
    .bonus-header {
        text-align: center;
        padding: 1rem;
        background: rgba(211, 0, 0, 0.1);
        border-radius: 15px;
        border: 1px solid rgba(211, 0, 0, 0.2);
        margin-bottom: 0;
        width: 100%;
        box-sizing: border-box;
        order: 1;
    }
    
    .bonus-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        color: #fff;
    }
    
    .bonus-tagline {
        font-size: 0.9rem;
        color: #ccc;
        margin-bottom: 1rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
        font-weight: bold;
        color: #d30000;
        text-shadow: 0 0 10px rgba(211, 0, 0, 0.5);
        margin: 0.5rem 0;
    }
    
    .bonus-main {
        padding: 1.5rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        order: 2;
    }
    
    .bonus-main h3 {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 1rem;
    }
    
    .bonus-terms {
        padding: 1.5rem;
        margin: 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        order: 3;
    }
    
    .bonus-terms h4 {
        font-size: 1.1rem;
        color: #fff;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .terms-list {
        text-align: left;
        padding-left: 1rem;
        margin: 0;
    }
    
    .terms-list li {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        color: #ccc;
        position: relative;
        padding-left: 1.5rem;
        display: block;
    }
    
    .terms-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #d30000;
        font-weight: bold;
    }
    
    .check-icon {
        display: none;
    }
    
    .bonus-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1rem;
        background: rgba(211, 0, 0, 0.1);
        border-radius: 15px;
        border: 1px solid rgba(211, 0, 0, 0.2);
        text-align: center;
        margin-bottom: 0;
        box-sizing: border-box;
        order: 4;
    }
    
    .offers-cta-button,
    .cta-button.secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: auto;
        margin: 0 auto;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .header-container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        max-width: 250px;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .games-section {
        padding: 1.5rem 0.5rem;
    }
    
    .trust-trending-section {
        padding: 1.5rem 0.5rem;
    }
    
    .why-woospin-section {
        padding: 1.5rem 0.5rem;
    }
    
    .welcome-bonus {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .responsible-gaming {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .footer-container {
        padding: 1.5rem 0.5rem;
    }
    
    .footer-bottom {
        padding: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .trending-title {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }
    
    .game-thumbnail {
        height: 160px;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .warning-icon {
        font-size: 1.8rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: auto;
        min-width: 200px;
    }
    
    .trust-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trending-games {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Ensure no horizontal scroll on any mobile device */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    main {
        overflow-x: hidden;
        width: 100%;
    }
    
    section {
        overflow-x: hidden;
        width: 100%;
    }
}

/* Welcome Bonus Section */
.welcome-bonus {
    padding: 4rem 2rem;
    border-top: 2px solid #D30000;
    border-bottom: 2px solid #D30000;
}

.bonus-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bonus-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.bonus-tagline {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.bonus-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.bonus-main {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #D30000;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.bonus-main h3 {
    color: #D30000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-subtitle {
    color: #FF4500;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.bonus-terms {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

.bonus-terms h4 {
    color: #D30000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.3px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.check-icon {
    color: #D30000;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.bonus-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    align-items: center;
}

.offers-cta-button,
.cta-button.secondary {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 200px;
}

.cta-button.secondary {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 180px;
}

.responsible-gaming {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.responsible-gaming p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.responsible-gaming a {
    color: #D30000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.responsible-gaming a:hover {
    color: #FF4500;
    text-decoration: underline;
}

/* About Page Hero Image */
.about-hero-image-section {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-image {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(211, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 0, 0, 0.2);
    border-color: #D30000;
}

/* Responsive styles for about hero image */
@media (max-width: 768px) {
    .about-hero-image-section {
        padding: 1rem 0;
    }
    
    .hero-image {
        max-width: 500px;
    }
    
    .about-hero-image {
        border-radius: 8px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .about-hero-image-section {
        padding: 0.8rem 0;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .about-hero-image {
        border-radius: 6px;
    }
}

/* Additional Hover Effects */
.game-card:hover .game-info h3 {
    color: #FF4500;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.offer-button:focus,
nav a:focus {
    outline: 2px solid #D30000;
    outline-offset: 2px;
}

/* Offers Row Section */
.offers-row-section {
    padding: 4rem 2rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.offers-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-item {
    flex: 1;
    background: linear-gradient(145deg, #1a1a1a, #0b0b0b);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.offer-item:hover::before {
    left: 100%;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 0, 0, 0.15);
    border-color: #D30000;
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.offer-item:hover .offer-icon {
    transform: scale(1.1);
}

.offer-item h3 {
    color: #D30000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* About Us Section */
.about-section {
    padding: 4rem 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

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