* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.hero-image {
    margin-bottom: 30px;
}

.main-image {
    max-width: 100%;
    height: auto;
    max-height: 470px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    filter: brightness(1.05) contrast(1.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 10px;
    color: #ffffff;
    font-style: italic;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        #ffffff 20%, 
        #c9a961 50%, 
        #ffffff 80%, 
        #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow-sweep 8s linear infinite;
}

@keyframes glow-sweep {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #b8b8b8;
    font-weight: 300;
    margin-top: 10px;
}

main {
    padding: 40px 20px;
}

.intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mysterious-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #d0d0d0;
    font-style: italic;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #8b7355;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 10px 0;
    color: #999;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .mysterious-text {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .main-image {
        max-height: 340px;
    }
}

