* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    animation: slideTransition 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: slideTransition 1s ease-in-out;
}

@keyframes slideTransition {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-links {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    object-fit: contain;
}

.cta-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    font-family: 'Georgia', serif;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 2px;
}

.cta-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.cta-btn:hover::after {
    width: 100%;
}

/* Live Section */
.live {
    padding: 80px 0;
    background-image: url('../images/tour-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.live {
    position: relative;
}

.live .container {
    position: relative;
    z-index: 1;
}

.live h2 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
}

.live-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.live-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
    background: transparent;
    border-bottom: 1px solid #333;
}

.live-item-info {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    letter-spacing: 1px;
}

.live-date {
    font-weight: bold;
    margin-bottom: 8px;
}

.live-venue {
    font-size: 16px;
}

.live-link {
    display: inline-block;
    background: white;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 16px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    width: fit-content;
    letter-spacing: 1px;
}

.live-link:hover {
    background: #333;
    color: white;
}

.live-empty {
    color: #333;
    font-family: 'Georgia', serif;
    text-align: center;
}

.mailing-list-page {
    min-height: 100vh;
    background: #000;
    color: #fff;
}

.mailing-list-main {
    width: min(100% - 40px, 560px);
    margin: 0 auto;
    padding: 48px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 28px;
    color: #fff;
    font-family: Georgia, serif;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }

    .cta-btn {
        font-size: 20px;
    }

    .live h2 {
        font-size: 36px;
    }

    .live-item {
        padding: 20px;
    }

    .live-item-info {
        font-size: 16px;
    }

    .hero-links {
        gap: 20px;
    }
}
