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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 1px;
}

.nav-cta .btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-container-center {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.hero-content-center {
    text-align: center;
}

.hero-content-center .hero-cta {
    justify-content: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid #00d4ff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0f0f23;
    transform: translateY(-2px);
}

.hero-banner {
    animation: fadeInRight 1s ease-out;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-link {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: block;
    transition: all 0.3s ease;
}

.banner-link:hover .banner-image {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-banner {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: rgba(15, 15, 35, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-container {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.content-section {
    margin-bottom: 4rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #00d4ff;
}

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

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

.content-section strong {
    color: #00d4ff;
    font-weight: 600;
}

/* Game Demo Section */
.game-demo-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.game-demo-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.game-demo-section > p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.game-demo-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 2rem;
}

.demo-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: #0a0a0a;
    cursor: pointer;
}

.demo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.demo-wrapper:hover .demo-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.demo-wrapper:hover .demo-overlay {
    opacity: 1;
    pointer-events: all;
}

.demo-play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.demo-play-btn:hover {
    transform: scale(1.1);
}

.demo-play-btn svg {
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.6));
    transition: filter 0.3s ease;
}

.demo-play-btn:hover svg {
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.9));
}

.demo-play-btn span {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.game-demo-link {
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.game-demo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.game-demo-link:hover .game-demo-image {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-demo-link:hover .play-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.game-demo-link:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.7);
}

.game-demo-cta {
    margin-top: 2rem;
}

.btn-game-demo {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.btn-game-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.6);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.4);
}

/* Footer */
.footer {
    background: #0f0f23;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-contact {
    color: #b0b0b0;
    margin-bottom: 0.8rem;
}

.btn-footer {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 15, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-cta {
        display: none;
    }


    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-hero,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .banner-image {
        max-width: 100%;
        border-radius: 15px;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

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

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

    .content-section h2 {
        font-size: 1.8rem;
    }

    .game-demo-section {
        padding: 2rem;
        margin: 2rem 0;
    }

    .game-demo-section h3 {
        font-size: 1.6rem;
    }

    .game-demo-section > p {
        font-size: 1rem;
    }

    .play-button {
        padding: 16px 40px;
        font-size: 1.2rem;
    }

    .btn-game-demo {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .demo-play-btn {
        font-size: 1.2rem;
    }

    .demo-play-btn svg {
        width: 50px;
        height: 50px;
    }

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

    .content-section h3 {
        font-size: 1.4rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .game-iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .banner-image {
        border-radius: 12px;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .game-demo-section {
        padding: 1.5rem;
    }

    .game-demo-section h3 {
        font-size: 1.4rem;
    }

    .play-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .btn-game-demo {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .game-iframe {
        height: 300px;
    }

    .demo-play-btn {
        font-size: 1rem;
    }

    .demo-play-btn svg {
        width: 40px;
        height: 40px;
    }

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

    .winners-section .section-title {
        font-size: 1.5rem;
    }

}

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

/* Focus states for accessibility */
.btn-hero:focus,
.btn-secondary:focus,
.btn-cta:focus,
.btn-banner:focus,
.btn-footer:focus,
.nav-link:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Loading animation for iframe */
.game-iframe {
    background: #1a1a2e;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Contact Form Styles */
.contact-form {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(15, 15, 35, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #00d4ff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Download CTA Styles */
.download-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
}

.download-info {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Additional responsive adjustments */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
}

/* Promo Popup Styles */
.promo-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease-out;
}

.promo-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.promo-popup.show .promo-popup-overlay {
    opacity: 1;
}

.promo-popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00d4ff;
    border-radius: 15px 15px 0 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    box-shadow: 0 -10px 60px rgba(0, 212, 255, 0.4);
    z-index: 10001;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.promo-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.promo-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.promo-popup-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.promo-popup-left {
    flex-shrink: 0;
}

.promo-logo {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

.promo-popup-center {
    flex: 1;
    text-align: left;
}

.promo-popup-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-popup-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.promo-popup-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.promo-code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.promo-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.promo-code-box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
}

.promo-code {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00d4ff;
    font-family: 'Courier New', 'Monaco', monospace;
    letter-spacing: 2.5px;
    flex: 1;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2);
}

.promo-copy-btn {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-copy-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.promo-copy-btn.copied {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    color: #00ff88;
}

.promo-play-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff1744, #f50057);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 23, 68, 0.6);
    background: linear-gradient(45deg, #ff1744, #ff4081);
}

/* Latest Winners Table Section */
.latest-winners-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 4rem 0;
    margin: 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.winners-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 4rem 0;
    margin: 3rem 0 0 0;
}

.winners-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.winners-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.winners-table-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.live-badge {
    background: linear-gradient(45deg, #ff6b00, #ff4500);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
    }
}

.winners-table-container {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.winners-table thead {
    background: rgba(15, 15, 35, 0.8);
}

.winners-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #b0b0b0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.winners-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: fadeInRow 0.5s ease-out;
}

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

.winners-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.winners-table tbody tr.new-winner {
    animation: highlightRow 2s ease-out;
}

@keyframes highlightRow {
    0% {
        background: rgba(0, 212, 255, 0.3);
    }
    100% {
        background: transparent;
    }
}

.winners-table td {
    padding: 1rem;
    color: #e0e0e0;
}

.winners-table td:first-child {
    color: #ffffff;
    font-weight: 600;
}

.winners-table .username {
    color: #00d4ff;
}

.winners-table .time {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.winners-table .wager {
    color: #e0e0e0;
}

.winners-table .multiplier {
    color: #ffa500;
    font-weight: 600;
}

.winners-table .payout {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Responsive styles for popup and winners table */
@media (max-width: 1024px) {
    .promo-popup-content {
        max-width: 95%;
        padding: 1rem 1.5rem;
    }
    
    .promo-popup-inner {
        gap: 1.5rem;
    }
    
    .promo-logo {
        width: 70px;
    }
    
    .promo-popup-title {
        font-size: 1.2rem;
    }
    
    .promo-popup-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .promo-popup-content {
        padding: 1rem;
    }
    
    .promo-popup-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .promo-popup-left {
        display: none;
    }
    
    .promo-popup-center {
        text-align: center;
    }
    
    .promo-popup-title {
        font-size: 1.1rem;
    }
    
    .promo-popup-text {
        font-size: 0.8rem;
    }
    
    .promo-popup-right {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .promo-code-wrapper {
        width: 100%;
    }
    
    .promo-code-box {
        min-width: auto;
        width: 100%;
    }
    
    .promo-code {
        font-size: 0.9rem;
    }
    
    .promo-play-btn {
        font-size: 0.9rem;
        padding: 10px 25px;
        width: 100%;
    }
    
    .latest-winners-section {
        padding: 3rem 0;
    }
    
    .winners-table-header h2 {
        font-size: 1.5rem;
    }
    
    .winners-table-container {
        overflow-x: auto;
    }
    
    .winners-table {
        font-size: 0.85rem;
    }
    
    .winners-table th,
    .winners-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .winners-table th {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .promo-popup-content {
        padding: 0.8rem;
    }
    
    .promo-popup-title {
        font-size: 1rem;
    }
    
    .promo-popup-text {
        font-size: 0.75rem;
    }
    
    .promo-code {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .promo-play-btn {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .latest-winners-section {
        padding: 2rem 0;
    }
    
    .winners-table-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .winners-table th,
    .winners-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .winners-table .payout {
        font-size: 0.9rem;
    }
}

/* Inline CTA Buttons */
.inline-cta {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 204, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.btn-inline {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.btn-inline-secondary {
    display: inline-block;
    background: transparent;
    color: #00d4ff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #00d4ff;
    transition: all 0.3s ease;
}

.btn-inline-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Text Links */
.text-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.text-link:hover {
    border-bottom-color: #00d4ff;
    color: #0099cc;
}

/* Content Note */
.content-note {
    background: rgba(26, 26, 46, 0.6);
    border-left: 4px solid #00d4ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Responsive styles for inline elements */
@media (max-width: 768px) {
    .inline-cta {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .btn-inline,
    .btn-inline-secondary {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .content-note {
        padding: 1rem;
        font-size: 0.95rem;
    }
}
}