@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', serif;
    background: #0c0c0c;
    background-image: 
        radial-gradient(circle at 25% 25%, #2c1810 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #1a0f0a 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #3d2914 0%, transparent 50%);
    color: #f4e4bc;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
}

.logo {
    font-size: 2.4rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}

.logo:hover::before {
    opacity: 0.3;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.nav-toggle:hover {
    color: #ffd700;
    transform: scale(1.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #f4e4bc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.7rem 0;
}

.nav-menu a:hover {
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: width 0.4s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 7rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: glow 6s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 50px rgba(212, 175, 55, 0.9), 0 0 75px rgba(255, 215, 0, 0.6);
        transform: scale(1.04);
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: #e6d7a8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.notice-banner {
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
    color: #2c1810;
    padding: 2.5rem;
    margin: 3.5rem 0;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    animation: slideInUp 1.5s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes slideInUp {
    from {
        transform: translateY(70px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notice-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
    font-weight: 800;
    color: #2c1810;
}

.notice-banner p {
    margin: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
}

/* Game Container */
.game-container {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 3.5rem;
    margin: 3.5rem 0;
    border: 4px solid #d4af37;
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.game-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37, #ffd700);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 5s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    position: relative;
}

.content-section h2 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    border-radius: 4px;
}

.content-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: justify;
    font-weight: 400;
    line-height: 2;
    color: #e6d7a8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    transition: all 0.6s 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(212, 175, 55, 0.15), transparent);
    transition: left 1s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
    font-weight: 400;
    color: #d5c4a8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(25px);
    padding: 4rem 0;
    text-align: center;
    border-top: 3px solid #d4af37;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer p {
    margin-bottom: 1.8rem;
    color: #d5c4a8;
    font-weight: 400;
}

.footer a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 1.8rem;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
}

.footer a:hover {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: width 0.4s ease;
}

.footer a:hover::after {
    width: 100%;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
}

.modal-content {
    background: linear-gradient(135deg, #0c0c0c 0%, #2c1810 100%);
    margin: 8% auto;
    padding: 4rem;
    border: 4px solid #d4af37;
    border-radius: 25px;
    width: 90%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37, #ffd700);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 5s linear infinite;
}

.modal h2 {
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.modal p {
    margin-bottom: 2.5rem;
    color: #f4e4bc;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.modal-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 1.4rem 3rem;
    border: none;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.6s ease;
    font-family: 'Cinzel', serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 1s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-yes {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #2c1810;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-yes:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.8);
}

.btn-no {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
}

.btn-no:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 107, 107, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.99);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 3rem;
        border-top: 3px solid #d4af37;
        gap: 2.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .game-container iframe {
        height: 400px;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 3rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .game-container iframe {
        height: 300px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2.2rem;
    }
}

/* Floating Elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

.floating {
    animation: float 8s ease-in-out infinite;
}

/* Particle System */
.particle {
    position: fixed;
    width: 5px;
    height: 5px;
    background: #d4af37;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative Elements */
.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
    margin: 2.5rem 0;
    animation: shimmer 4s ease-in-out infinite;
}

/* Gold Accent Elements */
.gold-accent {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.gold-border {
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}