@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(160deg, #1e0a00 0%, #3d1f00 25%, #5c2e00 50%, #3d1f00 75%, #1e0a00 100%);
    color: #f5e6d3;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '♣ ♦ ♥ ♠ ★ ✦ ✧ ◆';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.05);
    letter-spacing: 4rem;
    line-height: 6rem;
    word-wrap: break-word;
    pointer-events: none;
    z-index: 0;
    animation: floatSymbols 30s linear infinite;
}

@keyframes floatSymbols {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    background: rgba(30, 10, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #ffd700;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 3rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-text p {
    font-size: 0.8rem;
    color: #ffd700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #f5e6d3;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    border-radius: 3px;
    transition: all 0.3s;
}

main {
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✦';
    position: absolute;
    font-size: 20rem;
    color: rgba(255, 215, 0, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: #d4af37;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
}

.lucky-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.fortune-card {
    background: linear-gradient(135deg, rgba(61, 31, 0, 0.8), rgba(92, 46, 0, 0.6));
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.fortune-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.fortune-card:hover::before {
    left: 100%;
}

.fortune-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: #ffed4e;
}

.fortune-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.fortune-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
}

.fortune-card p {
    color: #d4c5b0;
    line-height: 1.7;
    position: relative;
}

.game-section {
    margin: 5rem 0;
    text-align: center;
    background: rgba(30, 10, 0, 0.6);
    border-radius: 25px;
    padding: 3rem;
    border: 3px solid rgba(255, 215, 0, 0.4);
}

.game-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 2rem;
}

.game-section iframe {
    border-radius: 15px;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.info-section {
    background: rgba(61, 31, 0, 0.7);
    border-radius: 20px;
    padding: 3.5rem;
    margin: 3rem 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

.info-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffed4e;
    margin: 2rem 0 1rem;
}

.info-section p {
    color: #d4c5b0;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.info-section ul {
    list-style-position: inside;
    color: #d4c5b0;
    line-height: 1.8;
    margin-left: 2rem;
}

.info-section li {
    margin-bottom: 0.8rem;
}

footer {
    background: rgba(30, 10, 0, 0.95);
    padding: 3rem 2rem;
    border-top: 3px solid #ffd700;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrapper h3 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.responsible-links a {
    color: #f5e6d3;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.responsible-links a:hover {
    background: #ffd700;
    color: #1e0a00;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.footer-wrapper p {
    color: #8b7355;
    margin-top: 2rem;
}

/* Age Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #3d1f00, #5c2e00);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #ffd700;
    box-shadow: 0 20px 80px rgba(255, 215, 0, 0.5);
}

.age-box h2 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.age-box p {
    color: #d4c5b0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.age-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-button {
    padding: 1.2rem 3rem;
    border: 3px solid #ffd700;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-button.confirm {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #1e0a00;
}

.age-button.confirm:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.age-button.deny {
    background: transparent;
    color: #f5e6d3;
}

.age-button.deny:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(30, 10, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s;
        border-top: 3px solid #ffd700;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .lucky-grid {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        padding: 2rem;
    }
}
