@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: linear-gradient(135deg, #2c1810 0%, #3d2914 25%, #4a2c1a 50%, #5d3a1f 75%, #6b4423 100%);
    color: #d4af37;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gears" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="8" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/><circle cx="15" cy="15" r="3" fill="%23d4af37" opacity="0.2"/><path d="M7,15 L23,15 M15,7 L15,23" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gears)"/></svg>');
    pointer-events: none;
    z-index: -1;
    animation: gearRotation 30s linear infinite;
}

@keyframes gearRotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(61, 41, 20, 0.95) 100%);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    letter-spacing: 3px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #d4af37;
    border-radius: 5px;
    background: rgba(212, 175, 55, 0.1);
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, #d4af37, #ffffff);
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav a:hover::after {
    width: 100%;
}

/* Main Content */
.main {
    margin-top: 100px;
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="steampunk" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="60" height="60" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.2"/><circle cx="30" cy="30" r="15" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.3"/><circle cx="30" cy="30" r="5" fill="%23d4af37" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="url(%23steampunk)"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    animation: steamEffect 4s infinite;
}

@keyframes steamEffect {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
    100% { text-shadow: 0 0 50px rgba(212, 175, 55, 1), 0 0 80px rgba(212, 175, 55, 0.5); }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #ffffff, #d4af37);
    background-size: 200% 200%;
    color: #2c1810;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: buttonPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    border: 2px solid #d4af37;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4af37, #ffffff, #d4af37);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.game-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    letter-spacing: 3px;
}

.game-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.game-frame {
    border: 4px solid #d4af37;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    position: relative;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #d4af37, #ffffff, #d4af37);
    border-radius: 15px;
    z-index: -1;
}

/* Notices */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.notice {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
    position: relative;
}

.notice:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.notice h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(61, 41, 20, 0.95) 100%);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 3px solid #d4af37;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffffff, #d4af37);
}

.footer-content {
    text-align: center;
}

.footer h3 {
    font-family: 'Orbitron', monospace;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #2c1810 0%, #3d2914 100%);
    margin: 15% auto;
    padding: 4rem;
    border: 3px solid #d4af37;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #d4af37, #ffffff, #d4af37);
    border-radius: 20px;
    z-index: -1;
}

.modal h2 {
    font-family: 'Orbitron', monospace;
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    letter-spacing: 2px;
}

.modal p {
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-btn.yes {
    background: linear-gradient(45deg, #d4af37, #ffffff);
    color: #2c1810;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid #d4af37;
}

.modal-btn.no {
    background: transparent;
    color: #d4af37;
    border: 3px solid #d4af37;
}

.modal-btn:hover {
    transform: translateY(-2px);
}

.modal-btn.yes:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.modal-btn.no:hover {
    background: #d4af37;
    color: #2c1810;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(44, 24, 16, 0.98) 0%, rgba(61, 41, 20, 0.98) 100%);
        flex-direction: column;
        padding: 3rem;
        text-align: center;
        border-top: 3px solid #d4af37;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 3rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .game-section h2 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 2rem;
    }
}