/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0;
}

.skip-link:focus {
    top: 6px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    opacity: 0.1;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    pointer-events: none;
}

.rotating-numbers span {
    display: block;
    white-space: nowrap;
    animation: scroll-horizontal 20s linear infinite;
}

.rotating-numbers span:nth-child(even) {
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.logo-container {
    z-index: 2;
    text-align: center;
}

.rotating-logo {
    animation: blink-fade 3s ease-in-out infinite;
}

.rotating-logo h2 {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 1rem;
    color: #fff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

@keyframes blink-fade {
    0%, 50%, 100% {
        opacity: 1;
        color: #fff;
    }
    25% {
        opacity: 0.3;
        color: #000;
    }
    75% {
        opacity: 0.7;
        color: #333;
    }
}

/* Latest Release Section */
.latest-release {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000 0%, #111 100%);
}

.release-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.release-artwork img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.release-artwork img:hover {
    transform: scale(1.05);
}

.release-info h3 {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.release-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.release-info > p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.listen-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.listen-btn:hover {
    background: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: #111;
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.newsletter p {
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: #000;
    border: 1px solid #333;
    border-radius: 0;
    color: #fff;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #fff;
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 2rem;
    border-top: 1px solid #333;
}

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

.social-links a {
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a,
.footer-links button {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links button:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Tour Page Styles */
.tour-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.tour-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.stay-tuned {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.stay-tuned-content {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stay-tuned-content h2 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    animation: blink-fade 3s ease-in-out infinite;
}

.stay-tuned-content > p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.social-preview {
    margin-top: 3rem;
}

.follow-btn {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
}

.follow-btn:hover {
    background: #ccc;
    transform: scale(1.05);
}

/* Music Page Styles */
.music-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.music-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.album {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.album:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.album img {
    width: 100%;
    max-width: 250px;
    border-radius: 0;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.album:hover img {
    transform: scale(1.05);
}

.album h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.album p {
    color: #ccc;
    margin-bottom: 1rem;
}

.streaming-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.streaming-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.streaming-links a:hover {
    color: #ccc;
    transform: scale(1.15);
}

.streaming-links svg {
    width: 24px;
    height: 24px;
    display: block;
}

.apple-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    top: 5px;
}

.streaming-links a:hover .apple-icon {
    filter: brightness(0) invert(0.8);
}

/* Video Page Styles */
.video-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.video-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    margin: 0;
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    line-height: 1.3;
}

.video-link {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-link:hover {
    color: #ccc;
    transform: scale(1.15);
}

/* Store Page Styles */
.store-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.store-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-content h2 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    animation: blink-fade 3s ease-in-out infinite;
}

.coming-soon-content > p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.notify-section {
    margin-top: 3rem;
}

.notify-section p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.notify-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    background: #000;
    border: 1px solid #333;
    border-radius: 0;
    color: #fff;
    font-size: 1rem;
}

.notify-form input:focus {
    outline: none;
    border-color: #fff;
}

.notify-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.notify-form button:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .rotating-logo h2 {
        font-size: 4rem;
        letter-spacing: 0.5rem;
    }

    .release-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .release-info h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .tour-date {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .stay-tuned-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .stay-tuned-content h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .music-grid,
    .video-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .streaming-links {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .coming-soon-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .rotating-logo h2 {
        font-size: 3rem;
        letter-spacing: 0.3rem;
    }

    .container {
        padding: 0 15px;
    }

    .latest-release {
        padding: 4rem 0;
    }

    .newsletter {
        padding: 3rem 0;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects */
