* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f;
    color: #f8f9fa;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b0e 100%);
    margin-bottom: 40px;
    border-bottom: 3px solid #ff6b35;
}

.header-content h1 {
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.4rem;
    color: #adb5bd;
    margin-bottom: 25px;
}

.main-content {
    padding: 20px 0 60px;
}

.spirit-article {
    background: #1a1a1a;
    border-radius: 12px;
    margin: 60px 0;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spirit-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #8B0000, #FF4500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

#dokkaebi .image-placeholder {
    background: linear-gradient(135deg, #8B4513, #D2691E);
}

#dongja .image-placeholder {
    background: linear-gradient(135deg, #4B0082, #9370DB);
}

.emoji {
    font-size: 80px;
    margin-bottom: 15px;
}

.spirit-details {
    padding: 35px;
}

.spirit-details h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.korean {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #adb5bd;
}

.halloween-connection {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    margin-top: 25px;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
    color: #adb5bd;
    margin-top: 40px;
}

.spirit-article {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .spirit-article {
        display: flex;
        min-height: 500px;
    }
    
    #gumiho, #dongja {
        flex-direction: row;
    }
    
    #dokkaebi {
        flex-direction: row-reverse;
    }
    
    .spirit-image-wrapper {
        flex: 1;
    }
    
    .image-placeholder {
        height: 100%;
    }
    
    .spirit-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}