* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #2d1810;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
}

/* Lantern glow effects */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 191, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    border-bottom: 2px solid #ff8c00;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

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

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffbf00;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.5);
}

.logo::before {
    content: "🏮";
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.7));
}

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

.nav-link {
    text-decoration: none;
    color: #e6e6e6;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 30px;
    position: relative;
}

.nav-link:hover {
    color: #ffbf00;
    background: rgba(255, 140, 0, 0.15);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffbf00;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(255, 191, 0, 0.5);
}

/* Main Content */
.main-content {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(45deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 191, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #ffbf00;
    text-shadow: 0 0 20px rgba(255, 191, 0, 0.6);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: #e6e6e6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff8c00, #ffbf00);
    color: #1a1a2e;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    background: linear-gradient(45deg, #ffbf00, #ff8c00);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: rgba(26, 26, 46, 0.9);
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
}

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

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #ffbf00;
    text-shadow: 0 0 15px rgba(255, 191, 0, 0.4);
    font-weight: 300;
}

.about-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image {
    text-align: center;
    font-size: 10rem;
    color: #ff8c00;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.5));
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.8), rgba(26, 26, 46, 0.9));
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: #ffbf00;
    text-shadow: 0 0 15px rgba(255, 191, 0, 0.4);
    font-weight: 300;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.feature-box {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    flex: 0 1 350px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 140, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
}

.feature-symbol {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #ff8c00;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.feature-box h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ffbf00;
    font-weight: 500;
}

.feature-box p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Game Section */
.game-section {
    padding: 100px 20px;
    background: rgba(26, 26, 46, 0.95);
}

.game-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ffbf00;
    text-shadow: 0 0 15px rgba(255, 191, 0, 0.4);
    font-weight: 300;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 52, 96, 0.8), rgba(26, 26, 46, 0.9));
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

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

.game-description {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.game-description h3 {
    color: #ffbf00;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.game-description p {
    color: #cccccc;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.game-highlights {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ff8c00;
}

.game-highlights p {
    color: #ffbf00;
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #0f1419);
    color: #cccccc;
    padding: 80px 20px 30px;
    border-top: 3px solid #ff8c00;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    margin-bottom: 25px;
    color: #ffbf00;
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.footer-brand p {
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 25px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ff8c00;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    padding-top: 30px;
    text-align: center;
    color: #999999;
    font-size: 0.95rem;
}

.disclaimer-warning {
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    color: #ffbf00;
    text-align: center;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Page Styles */
.page-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #e6e6e6;
    padding: 140px 20px 80px;
    text-align: center;
    border-bottom: 2px solid #ff8c00;
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffbf00;
    text-shadow: 0 0 20px rgba(255, 191, 0, 0.5);
    font-weight: 300;
}

.page-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-body {
    padding: 80px 20px;
    background: rgba(26, 26, 46, 0.95);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 52, 96, 0.6), rgba(26, 26, 46, 0.8));
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.content-wrapper h2 {
    color: #ffbf00;
    margin-bottom: 30px;
    font-size: 2.2rem;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
    font-weight: 300;
}

.content-wrapper h3 {
    color: #ff8c00;
    margin: 35px 0 20px;
    font-size: 1.5rem;
}

.content-wrapper p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-wrapper ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.content-wrapper li {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: 30px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    color: #ffbf00;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    color: #e6e6e6;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.form-field textarea {
    height: 140px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(45deg, #ff8c00, #ffbf00);
    color: #1a1a2e;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.contact-details {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ff8c00;
}

/* Modal Styles */
.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: linear-gradient(145deg, #1a1a2e, #16213e);
    margin: 8% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 2px solid #ff8c00;
}

.modal-content h2 {
    color: #ffbf00;
    margin-bottom: 25px;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.modal-content p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.btn-confirm {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-decline {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-confirm:hover,
.btn-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 140, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
        font-size: 8rem;
    }
    
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .modal-content {
        margin: 15% auto;
        padding: 30px 25px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about, .features, .game-section {
        padding: 80px 15px;
    }
    
    .feature-box {
        padding: 40px 25px;
    }
    
    .footer {
        padding: 60px 15px 25px;
    }
    
    .content-wrapper {
        padding: 35px 25px;
    }
}