@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: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.dual-box {
    width: 380px; height: 380px; background: #0a0a0a;
    border: 4px solid var(--red); border-radius: 20px;
    padding: 1.5rem; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    transition: 0.4s;
}
.dual-box:hover { transform: translateY(-10px); }
.dual-img { width: 250px; height: 250px; object-fit: cover; border-radius: 15px; }
.dual-message {
    font-size: 1rem; line-height: 1.8; margin-top: 1rem; padding: 0 1rem;
    color: #fff;
}

/* 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);
}
.phone-frame::before {
    content: ''; position: absolute; top: 25px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 8px; background: #333; border-radius: 0px;
}
.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); }

/* 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; }

/* 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); }

/* Responsive */
@media (max-width: 768px) {
    .navbar { display: none; }
    .hero-buttons, .catalog-mockup, .dual-box-row { flex-direction: column; }
    .dual-box { width: 300px; height: 300px; }
    .dual-img { width: 200px; height: 200px; }
    .phone-frame { width: 300px; height: 600px; }
    .spinning-logo { right: 15px; bottom: 15px; width: 70px; height: 70px; }
}