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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0a0a0a;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.mobile-nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Videos Section */
.videos-section {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.videos-container {
    width: 100%;
}

.videos-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 60px 40px 40px;
}

.video-item {
    width: 100%;
    height: 100vh;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.videos-see-all {
    display: inline-block;
    margin: 40px;
    padding: 14px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0a0a;
    background-color: #fff;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.videos-see-all:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .videos-container h2 {
        padding: 40px 20px 30px;
    }

    .video-item {
        height: 56.25vw;
    }

    .videos-see-all {
        margin: 30px 20px;
    }
}

/* Releases Section */
.releases-section {
    padding: 60px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
}

.releases-header {
    padding: 0 40px;
    margin-bottom: 30px;
}

.releases-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.releases-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.releases-scroll::-webkit-scrollbar {
    display: none;
}

.releases-track {
    display: flex;
    gap: 20px;
    padding: 0 40px;
    width: max-content;
}

.release-item {
    flex-shrink: 0;
    width: 200px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.release-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.release-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.release-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.release-item.see-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-all-box {
    width: 200px;
    height: 200px;
    border: 2px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.see-all-box:hover {
    border-color: #fff;
}

.see-all-box span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .releases-section {
        padding: 40px 0;
    }

    .releases-header {
        padding: 0 20px;
    }

    .releases-track {
        padding: 0 20px;
        gap: 15px;
    }

    .release-item {
        width: 150px;
    }

    .release-item img {
        width: 150px;
        height: 150px;
    }
}

/* Tour Section */
.tour-section {
    padding: 60px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

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

.tour-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tour-dates {
    width: 100%;
}

.tour-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #1a1a1a;
    gap: 30px;
    transition: background-color 0.3s ease;
}

.tour-item:first-child {
    border-top: 1px solid #1a1a1a;
}

.tour-item:hover {
    background-color: rgba(255,255,255,0.02);
}

.tour-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.tour-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.tour-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-date .year {
    font-size: 0.9rem;
    color: #666;
    margin-left: 5px;
}

.tour-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-info .venue {
    font-size: 1.2rem;
    font-weight: 600;
}

.tour-info .city {
    font-size: 0.95rem;
    color: #888;
}

.tour-btn {
    padding: 14px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0a0a;
    background-color: #fff;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.tour-btn:hover {
    background-color: #e0e0e0;
}

.tour-more {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .tour-section {
        padding: 40px 20px;
    }

    .tour-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .tour-btn {
        justify-self: start;
    }
}

/* Mailing Section */
.mailing-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.mailing-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.mailing-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mailing-container p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.mailing-btn {
    display: inline-block;
    padding: 16px 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #ffffff;
    color: #0a0a0a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mailing-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.02);
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-links a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

/* Hidden SEO Content */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 60px 15px 30px;
    }

    .mailing-section {
        padding: 60px 20px;
    }

    .mailing-form input {
        min-width: 100%;
    }

    .mailing-form button {
        width: 100%;
    }
}
