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

body {
    font-family: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff6ee;
    background: #0b0b0b;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,140,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,119,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,160,60,0.06) 0%, transparent 50%);
    min-height: 100vh;
    position: relative;
}

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

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 59, 19, 0.18);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e23b13;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-img {
    height: 35px;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 8px;
    border: 1px solid rgba(226, 59, 19, 0.22);
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-link:hover {
    background: rgba(226, 59, 19, 0.12);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(226, 59, 19, 0.08);
}

/* Mobile Menu */
.hamburger {
    display: none;
    position: absolute;
    right: 0;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #e23b13;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(35, 18, 15, 0.98));
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    will-change: auto;
    transform: none;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #e23b13, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 119, 0, 0.45), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff1d6, transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    opacity: 0.3;
    z-index: 0;
}

@keyframes starMove {
    from { transform: translateY(0px); }
    to { transform: translateY(0px); }
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #e23b13, #ff7a18, #ffad5a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(226, 59, 19, 0.45);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #c6281c, #e64a19);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(226, 59, 19, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226, 59, 19, 0.55);
    background: linear-gradient(45deg, #e64a19, #ff7a18);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(15, 15, 35, 0.5);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #e23b13;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.about-image {
    text-align: center;
}

.about-placeholder {
    background: rgba(226, 59, 19, 0.06);
    border-radius: 20px;
    padding: 60px;
    border: 2px dashed rgba(226, 59, 19, 0.14);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.8), rgba(15, 15, 35, 0.9));
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #e23b13;
    margin-bottom: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 59, 19, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 59, 19, 0.06), transparent);
    transition: left 0.5s;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(226, 59, 19, 0.28);
    box-shadow: 0 20px 40px rgba(226, 59, 19, 0.08);
}

.feature-icon {
    font-size: 3.5rem;
    color: #e23b13;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #e0e7ff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Game Section */
.games {
    padding: 100px 0;
    background: rgba(15, 15, 35, 0.7);
}

.games h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #e23b13;
    margin-bottom: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 59, 19, 0.12);
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(226, 59, 19, 0.08);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #b71c1c 0%, #e64a19 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
}

.legal-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.legal-content {
    padding: 100px 0;
    background: rgba(15, 15, 35, 0.8);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(226, 59, 19, 0.12);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h3 {
    font-size: 1.6rem;
    color: #e23b13;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-section p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 20px;
    color: #cbd5e1;
    line-height: 1.8;
}

.last-updated {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 59, 19, 0.12);
}

.last-updated p {
    color: #94a3b8;
    font-style: italic;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(226, 59, 19, 0.12);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #e23b13;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(226, 59, 19, 0.14);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e7ff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e23b13;
    box-shadow: 0 0 0 3px rgba(226, 59, 19, 0.08);
    background: rgba(255, 255, 255, 0.08);
}

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

.submit-btn {
    background: linear-gradient(45deg, #c6281c, #e64a19);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 59, 19, 0.35);
}
.submit-btn {
    background: linear-gradient(45deg, #c6281c, #e64a19);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 59, 19, 0.35);
}

/* Footer */
footer {
    background: rgba(10, 10, 35, 0.95);
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(226, 59, 19, 0.12);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: #e23b13;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #e23b13;
}

.footer-disclaimer {
    background: rgba(226, 59, 19, 0.06);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(226, 59, 19, 0.12);
    margin-bottom: 30px;
}

.footer-disclaimer h4 {
    color: #e23b13;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-disclaimer p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer-card {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.disclaimer-card .footer-disclaimer h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(226, 59, 19, 0.08);
    color: #fff6ee;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 59, 19, 0.12);
}

.social-links a:hover {
    background: #e23b13;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 59, 19, 0.12);
    color: #bfb6ad;
}

/* Modal Disclaimer */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: rgba(15, 15, 15, 0.95);
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(226, 59, 19, 0.12);
}

.modal-content h3 {
    color: #e23b13;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-content p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-accept {
    background: linear-gradient(45deg, #c6281c, #e64a19);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 59, 19, 0.28);
}


.btn-decline {
    background: rgba(120, 120, 120, 0.14);
    color: #d1cfcf;
    border: 1px solid rgba(120, 120, 120, 0.14);
}

.btn-decline:hover {
    background: rgba(120, 120, 120, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
    background: rgba(15, 15, 15, 0.96);
        width: 100%;
        text-align: center;
        transition: 0.28s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 1.25rem 0.75rem;
        border: none;
        border-radius: 0;
        gap: 14px;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: 12px;
        margin: 0 8px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .legal-container {
        padding: 40px 25px;
    }

    .contact-form {
        padding: 40px 25px;
    }

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

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

    .legal-header h2 {
        font-size: 2.5rem;
    }

    .game-frame {
        height: 300px;
    }

    .features h2,
    .games h2,
    .about-text h2 {
        font-size: 2rem;
    }
}