@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&family=Cinzel+Decorative:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(135deg, #0c1445 0%, #1a237e 25%, #283593 50%, #3949ab 75%, #5c6bc0 100%);
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

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="runes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-family="serif" font-size="12" fill="%23ffffff" opacity="0.1" text-anchor="middle">ᚱ</text></pattern></defs><rect width="100" height="100" fill="url(%23runes)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(12, 20, 69, 0.95) 0%, rgba(26, 35, 126, 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 #ffd700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Uncial Antiqua', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #ffd700;
    border-radius: 5px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #ffd700;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

/* Main Content */
.main {
    margin-top: 100px;
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><defs><pattern id="viking" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23ffd700" opacity="0.3"/><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="1200" height="500" fill="url(%23viking)"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero h1 {
    font-family: 'Uncial Antiqua', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    color: #0c1445;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gradientShift 3s ease infinite;
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.game-section h2 {
    font-family: 'Uncial Antiqua', serif;
    font-size: 3rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.game-container {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

.game-frame {
    border: 4px solid #ffd700;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    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(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #ffd700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.notice:hover {
    transform: translateY(-5px);
}

.notice h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Uncial Antiqua', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(12, 20, 69, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 3px solid #ffd700;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.footer-content {
    text-align: center;
}

.footer h3 {
    font-family: 'Uncial Antiqua', serif;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* 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.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #0c1445 0%, #1a237e 100%);
    margin: 15% auto;
    padding: 4rem;
    border: 3px solid #ffd700;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 20px;
    z-index: -1;
}

.modal h2 {
    font-family: 'Uncial Antiqua', serif;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.modal p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-btn.yes {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0c1445;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.modal-btn.no {
    background: transparent;
    color: #f5f5f5;
    border: 3px solid #f5f5f5;
}

.modal-btn:hover {
    transform: translateY(-2px);
}

.modal-btn.yes:hover {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.modal-btn.no:hover {
    background: #f5f5f5;
    color: #0c1445;
}

/* 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(12, 20, 69, 0.98) 0%, rgba(26, 35, 126, 0.98) 100%);
        flex-direction: column;
        padding: 3rem;
        text-align: center;
        border-top: 3px solid #ffd700;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .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;
    }
}