/* 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;
}

/* Hero with Image */
.hero-with-image {
    position: relative;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

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

.hero-logo h2 {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 1.5rem;
    color: #fff;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.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 6rem;
    min-height: 80vh;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(10,10,10,1) 100%);
}

.tour-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.tour-header h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    background: linear-gradient(135deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Bandsintown Widget Container */
.bandsintown-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.bandsintown-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bandsintown-widget a {
    display: block !important;
}

/* Override Bandsintown default styles */
.bit-widget {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
}

.bit-event {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1.5rem 0 !important;
    transition: all 0.3s ease !important;
}

.bit-event:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    padding-left: 1rem !important;
}

.bit-event:last-child {
    border-bottom: none !important;
}

/* Bandsintown "Request a show" button - arreglar el botón blanco */
.bandsintown-widget .bit-play-my-city-button,
.bandsintown-widget .bit-play-my-city-container,
.bandsintown-widget .bit-play-my-city,
.bit-widget .bit-play-my-city-button,
.bit-widget .bit-play-my-city-container,
.bit-widget .bit-play-my-city {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 2.5rem auto 0.5rem !important;
    padding: 0 !important;
    width: 100% !important;
}

.bandsintown-widget .bit-play-my-city-button a,
.bandsintown-widget .bit-play-my-city-button button,
.bandsintown-widget .bit-play-my-city button,
.bandsintown-widget .bit-play-my-city a,
.bit-widget .bit-play-my-city-button a,
.bit-widget .bit-play-my-city-button button,
.bit-widget .bit-play-my-city button,
.bit-widget .bit-play-my-city a,
.bit-play-my-city-button > *,
.bit-play-my-city > * {
    background: transparent !important;
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    margin: 0 auto !important;
    display: inline-block !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif !important;
    width: auto !important;
    max-width: 300px !important;
}

.bandsintown-widget .bit-play-my-city-button a:hover,
.bandsintown-widget .bit-play-my-city-button button:hover,
.bandsintown-widget .bit-play-my-city button:hover,
.bandsintown-widget .bit-play-my-city a:hover,
.bit-widget .bit-play-my-city-button a:hover,
.bit-widget .bit-play-my-city-button button:hover,
.bit-widget .bit-play-my-city button:hover,
.bit-widget .bit-play-my-city a:hover,
.bit-play-my-city-button > *:hover,
.bit-play-my-city > *:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15) !important;
}

/* Tour Call to Action */
.tour-cta {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tour-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.track-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.track-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.track-btn svg {
    transition: transform 0.3s ease;
}

.track-btn:hover svg {
    transform: scale(1.1);
}

/* No Dates Message */
.no-dates-message {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.no-dates-message p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .tour-subtitle {
        font-size: 1rem;
    }
    
    .bandsintown-widget {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
    
    .track-btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}

.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;
    }

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

    .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;
    }

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

    .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 */

/* ============================================
   MAILCHIMP POPUP CUSTOMIZATION
   ============================================ */

/* Custom close button for Mailchimp popup */
.custom-mailchimp-close {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 35px !important;
    text-align: center !important;
    cursor: pointer !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 999999999 !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}

.custom-mailchimp-close:hover {
    background: #fff !important;
    color: #000 !important;
    transform: scale(1.1) !important;
}

/* Mailchimp popup close button - make it more visible */
#mc-embedded-subscribe-form .mc_embed_close,
#mc_embed_signup .mc_embed_close,
.mc-modal-bg .mc_embed_close,
.mc-modal .mc_embed_close,
button.mc_embed_close {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 36px !important;
    text-align: center !important;
    cursor: pointer !important;
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 999999 !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

#mc-embedded-subscribe-form .mc_embed_close:hover,
#mc_embed_signup .mc_embed_close:hover,
.mc-modal-bg .mc_embed_close:hover,
.mc-modal .mc_embed_close:hover,
button.mc_embed_close:hover {
    background: #fff !important;
    color: #000 !important;
    transform: scale(1.1) !important;
}

/* Ensure close button is always visible on the modal */
.mc-modal .mc_embed_close,
.mc-modal-bg .mc_embed_close {
    display: block !important;
    visibility: visible !important;
}

/* Override any hiding styles */
#mc_embed_signup_scroll .mc_embed_close {
    display: block !important;
}

/* ============================================
   EXCLUSIVE CONTENT PAGE
   ============================================ */

.exclusive-section {
    padding: 4rem 0 6rem;
    min-height: 90vh;
    background: #000;
}

.exclusive-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.exclusive-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    color: #fff;
}

.exclusive-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
}

/* Exclusive Gallery */
.exclusive-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border: 2px solid #fff;
    background: #000;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Exclusive Card */
.exclusive-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.exclusive-card {
    background: #000;
    border: 2px solid #fff;
    padding: 3rem 2rem;
}

/* Card Title */
.card-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #fff;
}

.card-title h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: #fff;
}

/* Features List */
.exclusive-features {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: #000;
    border: 2px solid #fff;
    transition: all 0.2s ease;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item.feature-video {
    flex-direction: column;
    max-width: 100%;
}

.feature-link {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.feature-item:hover {
    background: #fff;
    color: #000;
}

.feature-item:hover svg {
    stroke: #000;
}

.feature-item:hover h3,
.feature-item:hover p {
    color: #000;
}

.feature-video-content {
    width: 100%;
}

.video-embed {
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-embed video {
    width: 100%;
    max-width: 100%;
    border: 2px solid #fff;
    background: #000;
    border-radius: 4px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon svg {
    stroke: #fff;
    margin-top: 0.25rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.exclusive-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #fff;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.notify-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: 2px solid #fff;
    background: #000;
    color: #fff;
}

.notify-btn:hover {
    background: #fff;
    color: #000;
}

.notify-btn:hover svg {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .exclusive-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .exclusive-subtitle {
        font-size: 1rem;
    }
    
    .exclusive-card {
        padding: 2rem 1.5rem;
    }

    .card-title h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .exclusive-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .notify-actions {
        flex-direction: column;
    }
    
    .notify-btn {
        width: 100%;
        justify-content: center;
    }
}
