@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Dark Red */
:root { --red: #8B0000; --dark-red: #5A0000; }

/* Header */
.header {
    position: fixed; top: 0; width: 100%; background: #000; z-index: 1000;
    padding: 1.2rem 0; border-bottom: 4px solid var(--red);
}
.logo { height: 130px; animation: logoPulse 3s infinite; transition: 0.4s; }
.logo:hover { transform: scale(1.05); }
@keyframes logoPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}
.navbar {
    display: flex; justify-content: center; gap: 3rem;
    font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 2px;
    margin-top: 1rem;
}
.navbar a {
    color: #fff; text-decoration: none; position: relative;
}
.navbar a::after {
    content: ''; position: absolute; bottom: -8px; left: 50%; width: 0;
    height: 3px; background: var(--red); transition: 0.3s; transform: translateX(-50%);
}
.navbar a:hover { color: var(--red); }
.navbar a:hover::after { width: 100%; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 100px; background: #000; }
.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(5rem, 12vw, 9rem);
    color: var(--red); letter-spacing: 5px;
}
.hero-subtitle, .hero-dream { color: #fff; font-weight: 700; }
.hero-dream { font-size: 1.7rem; margin: 2rem 0; }
.hero-buttons { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.btn-stream {
    padding: 1rem 2.2rem; border: 3px solid var(--red); border-radius: 50px;
    background: transparent; transition: 0.4s;
}
.btn-stream:hover { background: var(--red); color: #fff; transform: translateY(-6px); }
.stream-logo { height: 25px; }

/* Dual Box Row (Single + Ying-Yang) */
.dual-box-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}
.dual-box {
    background: #0a0a0a;
    border: 4px solid var(--red); border-radius: 20px;
    padding: 2rem; display: flex; flex-direction: column;
    align-items: center; text-align: center;
    transition: 0.4s;
    height: 100%; /* Ensure equal height in grid */
    position: relative; /* Needed for absolute positioning of the tag */
}
.dual-box:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(139,0,0,0.3); }
.dual-img { width: 100%; max-width: 250px; height: 250px; object-fit: cover; border-radius: 15px; margin-bottom: 1rem; }
.dual-message {
    font-size: 1rem; line-height: 1.6; margin-top: 0.5rem;
    color: #fff;
}

/* Upcoming Tag */
.upcoming-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--red);
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transform: rotate(10deg);
    z-index: 10;
}

/* Catalog */
.catalog-mockup { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.phone-frame {
    width: 380px; height: 677px; background: #111;
    border: 12px solid #000; border-radius: 60px;
    padding: 12px; box-shadow: 0 0 30px rgba(139,0,0,0.5);
    position: relative;
}
.phone-frame::before {
    content: ''; position: absolute; top: 25px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 8px; background: #333; border-radius: 4px;
}
.catalog-img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.btn-download {
    padding: 1rem 2.5rem; background: var(--red); color: #fff;
    border-radius: 0px; text-decoration: none; font-weight: 700;
    display: inline-block; margin-top: 1rem;
}
.btn-download:hover { background: #000; border: 0px solid var(--red); color: var(--red); }

/* Story */
.story-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.story-text { margin-bottom: 2rem; line-height: 1.8; }
.blockquote { border-left: 4px solid var(--red); padding-left: 1.5rem; color: #fff; }
.artist-images {
    display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
}
.artist-img {
    width: 380px; height: 380px; object-fit: cover;
    border: 5px solid var(--red); border-radius: 20px;
    transition: 0.4s;
}
.artist-img:hover { transform: scale(1.03); }

/* The Label */
.label-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.label-text { margin-bottom: 1.5rem; line-height: 1.8; font-size: 1.1rem; }

/* Grids */
.movement-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
    justify-content: center;
}
.movement-card {
    background: #0a0a0a; padding: 2rem;
    border: 3px solid var(--red); border-radius: 16px;
    transition: 0.4s;
}
.movement-card:hover {
    background: #111; transform: translateY(-10px);
}

/* Connect */
.connect-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
    justify-content: center;
}
.social-card {
    background: #0a0a0a; padding: 2rem;
    border: 3px solid var(--red); border-radius: 16px;
    transition: 0.4s;
    display: flex; justify-content: center; align-items: center;
}
.social-card:hover {
    background: #111; transform: translateY(-10px);
}
.social-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}
.social-card:hover .social-logo { transform: scale(1.2) rotate(5deg); }

/* Contact Form */
.contact-section { margin-top: 4rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.contact-title { margin-bottom: 2rem; color: var(--red); font-family: 'Bebas Neue', cursive; font-size: 2rem; letter-spacing: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 1rem; background: #0a0a0a; border: 2px solid #333;
    color: #fff; font-family: 'Montserrat', sans-serif; border-radius: 10px; outline: none; transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.btn-submit {
    padding: 1rem 2rem; background: var(--red); color: #fff; border: none;
    font-family: 'Bebas Neue', cursive; font-size: 1.2rem; letter-spacing: 2px;
    cursor: pointer; border-radius: 50px; transition: 0.3s; align-self: center;
}
.btn-submit:hover { background: #fff; color: var(--red); transform: translateY(-5px); }

/* Footer */
.footer {
    background: #000; padding: 4rem 0; border-top: 4px solid var(--red);
    position: relative;
}
.spinning-logo {
    position: absolute; bottom: 30px; right: 30px;
    width: 100px; height: 100px;
    animation: spin 10s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.mini-logo { height: 40px; margin-bottom: 1rem; }
.footer-text { font-size: 1.1rem; color: #fff; margin: 0.5rem 0; }
.footer-secure { color: var(--red); font-size: 0.9rem; }
.footer-trademark {
    font-style: italic; color: #fff; margin-top: 1rem;
    font-size: 1rem;
}
.footer-trademark em { color: var(--red); }

/* Section Spacing */
.section { padding-top: 5rem; padding-bottom: 5rem; }
.section-title { margin-bottom: 3rem; }

/* Animations & Modals */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: #0a0a0a;
    padding: 3rem;
    border-radius: 20px;
    border: 4px solid var(--red);
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.visible .modal-content { transform: scale(1); }
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.modal-content h3 {
    font-family: 'Bebas Neue', cursive;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar { display: none; }
    .hero-buttons, .catalog-mockup { flex-direction: column; }
    /* Removed fixed dimensions for mobile to allow content to fit */
    .phone-frame { width: 300px; height: 600px; }
    .spinning-logo { right: 15px; bottom: 15px; width: 70px; height: 70px; }
    .dual-box-row { grid-template-columns: 1fr; }
}