:root {
    --bg-color: #050505;
    --surface-color: #121212;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --border-color: #222222;
    --yelo-primary: #D9FF00;
    --yelo-hover: #B8D900;
    --yelo-dim: rgba(217, 255, 0, 0.15);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Classes */
.display-title {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.body-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.tech-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 500;
}

/* Header & Navigation */
.dev-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #d9ff00, #ff007b);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    z-index: 101;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.dev-banner i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.site-header {
    position: fixed;
    top: 40px; /* Offset by banner height */
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,5,1) 0%, rgba(5,5,5,0) 100%);
    transition: top 0.3s ease;
}


.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
}

.header-right {
    position: relative;
    z-index: 2;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

.hamburger-btn:hover span:nth-child(2) {
    width: 70%;
}

.menu-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.logo {
    height: 40px;
}

.social-icons a {
    color: var(--text-primary);
    margin-left: 2rem;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.6;
}

/* Slide-out Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 200;
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    overflow-y: auto;
}

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

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
    width: 100%;
    padding: 6rem 2rem 4rem 2rem;
    box-sizing: border-box;
}

.close-menu-btn {
    position: absolute;
    top: 2.5rem;
    right: 4rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.5rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.close-menu-btn:hover {
    opacity: 0.6;
}

.main-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    margin: auto 0;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: -0.02em;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.5;
}

.menu-footer {
    margin-top: auto;
}

.menu-socials {
    display: flex;
    gap: 2rem;
}

.menu-socials a {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.menu-socials a:hover {
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    border-radius: 100px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-primary);
}

.btn-rights {
    background-color: transparent;
    color: var(--yelo-primary);
    border: 1px solid var(--yelo-primary);
}

.btn-rights:hover {
    background-color: var(--yelo-primary);
    color: #000;
    border-color: var(--yelo-hover);
    box-shadow: 0 0 15px rgba(217, 255, 0, 0.4);
}

.badge-rights {
    color: var(--yelo-primary);
    background-color: var(--yelo-dim);
    border: 1px solid rgba(217, 255, 0, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.6) 100%);
}

.hero .display-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.hero .body-text {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-style: normal;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 4rem;
    animation: fadePulse 3s infinite;
}

/* ===========================
   News Section
   =========================== */
.news-section {
    padding: 0;
    margin: 8rem 0 0 0;
    background-color: var(--bg-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.news-item {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.65);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-item:hover .news-img-wrapper img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.8);
}

.news-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0) 30%, rgba(5,5,5,0.4) 65%, rgba(5,5,5,0.9) 100%);
    z-index: 2;
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
}

.news-date {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.news-item h2 {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.35;
    color: #FFFFFF;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 10rem 4rem;
    background-color: var(--bg-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.85);
    transition: filter 0.8s ease;
}

.about-image:hover img {
    filter: grayscale(0%) brightness(1);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text .tech-text {
    margin-bottom: 0;
}

.about-text .display-title {
    font-size: 3.5rem;
    line-height: 1.1;
}

.about-text .body-text {
    line-height: 1.8;
}

/* Detailed About Page Layout */
.about-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.about-detail-section {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-detail-section .small-title {
    font-size: 2.5rem;
    max-width: 900px;
}

.detail-content {
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--yelo-primary);
}

.feature-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--yelo-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.network-card {
    background-color: var(--surface-color);
    border-left: 3px solid var(--yelo-primary);
    padding: 2rem;
    transition: background-color 0.3s ease;
}

.network-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.network-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.network-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ===========================
   Video Release Section
   =========================== */
.video-release {
    padding: 12rem 2rem;
    text-align: center;
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.video-release .display-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* ===========================
   Gig Dates Section
   =========================== */
.gig-dates-section {
    padding: 10rem 4rem;
    background-color: var(--bg-color);
}

.gig-dates-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gig-dates-header {
    text-align: center;
    margin-bottom: 5rem;
}

.gig-dates-header .tech-text {
    margin-bottom: 1rem;
    display: block;
}

.gig-dates-header .display-title {
    font-size: 3.5rem;
}

.gig-dates-list {
    display: flex;
    flex-direction: column;
}

.gig-date-item {
    display: grid;
    grid-template-columns: 160px 1fr 160px auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.gig-date-item:first-child {
    border-top: 1px solid var(--border-color);
}

.gig-date-item:hover {
    background-color: rgba(255,255,255,0.02);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.gig-date {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.gig-venue {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
}

.gig-city {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.btn-gig {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    border-radius: 100px;
}

/* ===========================
   Store Section
   =========================== */
.store-section {
    padding: 10rem 4rem;
    background-color: var(--bg-color);
}

.store-header {
    text-align: center;
    margin-bottom: 5rem;
}

.store-header .tech-text {
    margin-bottom: 1rem;
    display: block;
}

.store-header .display-title {
    font-size: 3.5rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.store-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

.store-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    margin-bottom: 2rem;
    background-color: var(--surface-color);
    padding: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-img-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.store-img-link:hover {
    transform: translateY(-10px);
}

.store-item .tech-text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-store {
    margin-top: auto;
    align-self: center;
    font-size: 0.75rem;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-store:hover {
    border-color: var(--text-primary);
}

/* ===========================
   Mailing List Section
   =========================== */
.mailing-list-section {
    padding: 8rem 2rem;
    text-align: center;
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
}

.mailing-list-container {
    max-width: 600px;
    margin: 0 auto;
}

.mailing-list-container .display-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mailing-list-container .body-text {
    margin-bottom: 3rem;
}

.mailing-list-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.mailing-list-form input {
    flex: 1;
    padding: 0.5rem;
    background-color: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.mailing-list-form input::placeholder {
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.mailing-list-form input:focus {
    outline: none;
}

.mailing-list-form button {
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.mailing-list-form button:hover {
    opacity: 0.6;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    padding: 6rem 4rem 3rem 4rem;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 30px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social a:hover {
    color: var(--text-primary);
}

.footer-contact .body-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-email {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.footer-email:hover {
    border-color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadePulse {
    0% { opacity: 0.2; }
    50% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnim 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===========================
   Software Section Generator
   =========================== */
.generator-card {
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: left;
    width: 100%;
}

.generator-prompt-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.generator-textarea {
    width: 100%;
    height: 100px;
    background: transparent;
    border: none;
    resize: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.5;
    outline: none;
}

.generator-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.generator-inner-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.inner-action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.inner-action-btn:hover {
    color: var(--yelo-primary);
}

.generator-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.controls-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.toggle-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.control-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--yelo-primary);
}

input:checked + .slider:before {
    transform: translateX(18px);
    background-color: #000;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Duration Selector */
.duration-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.duration-pills {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 2px;
}

.duration-pill {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-pill.active {
    background: var(--yelo-primary);
    color: #000;
}

.duration-pill:not(.active):hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Generate Button */
.btn-generate {
    background-color: var(--yelo-primary);
    color: #000;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.85rem 2.2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(217, 255, 0, 0.2);
}

.btn-generate:hover {
    background-color: var(--yelo-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(217, 255, 0, 0.35);
}

.btn-generate:active {
    transform: translateY(0);
}

/* ===========================
   Rights Marketplace & Player
   =========================== */
.right-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.right-item:first-of-type {
    border-top: 1px solid var(--border-color);
}

.right-item-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 280px;
    min-width: 280px;
}

.track-play-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
}

.track-play-btn:hover {
    background: var(--yelo-primary);
    border-color: var(--yelo-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(217, 255, 0, 0.3);
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.track-info h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.track-waveform {
    flex-grow: 1;
    height: 32px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    position: relative;
    cursor: pointer;
}

.waveform-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgba(217, 255, 0, 0.08);
    border-right: 1px solid var(--yelo-primary);
    pointer-events: none;
    transition: width 0.1s linear;
}

.waveform-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 100%;
    width: 100%;
}

.waveform-bars span {
    display: block;
    width: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1px;
    transition: background 0.3s ease, height 0.3s ease;
}

/* Set pseudo-random heights for waveform mockup */
.waveform-bars span:nth-child(3n) { height: 40%; }
.waveform-bars span:nth-child(3n+1) { height: 75%; }
.waveform-bars span:nth-child(3n+2) { height: 55%; }
.waveform-bars span:nth-child(5n) { height: 90%; }
.waveform-bars span:nth-child(7n) { height: 25%; }

/* Waveform states */
.right-item.playing .waveform-bars span {
    background: rgba(255, 255, 255, 0.35);
}

.right-item.playing .waveform-bars span {
    animation: dance 1.2s ease-in-out infinite alternate;
}

.right-item.playing .waveform-bars span:nth-child(even) {
    animation-delay: 0.2s;
}

.right-item.playing .waveform-bars span:nth-child(3n) {
    animation-delay: 0.4s;
}

@keyframes dance {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(0.4); }
}

/* Deal Terms Drawer */
.deal-drawer {
    position: fixed;
    top: 0;
    right: -560px;
    width: 500px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 300;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.deal-drawer.active {
    right: 0;
}

.drawer-content {
    padding: 4.5rem 3.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    position: relative;
}

.close-drawer-btn {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close-drawer-btn:hover {
    opacity: 0.6;
}

.drawer-header {
    margin-bottom: 2.5rem;
}

.deal-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.deal-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.metric-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--yelo-primary);
}

.deal-terms-section {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.terms-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terms-bullets li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.4;
}

.terms-bullets li i {
    color: var(--yelo-primary);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.buy-now-btn {
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .store-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .hero .display-title { font-size: 4rem; }
    .site-header { padding: 2rem; }
    .about-container { gap: 4rem; }
    .gig-date-item { grid-template-columns: 120px 1fr 120px auto; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-item { height: 50vh; min-height: 350px; }
    .store-grid { grid-template-columns: 1fr; }
    .hero .display-title { font-size: 3rem; }
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
    }
    .site-header .header-left {
        z-index: 2;
    }
    .site-header .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        display: flex;
        align-items: center;
    }
    .site-header .logo {
        height: 30px;
    }
    .site-header .header-right.social-icons {
        display: none;
    }
    .main-nav {
        gap: 1.5rem;
    }
    .main-nav a {
        font-size: 2rem;
    }
    .menu-footer {
        margin-top: auto;
    }
    .close-menu-btn {
        right: 1.5rem;
        top: 1.5rem;
    }
    .store-section, .video-release, .about-section, .gig-dates-section { padding: 6rem 2rem; }
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-text .display-title { font-size: 2.5rem; }
    .gig-date-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }
    .btn-gig { width: fit-content; margin-top: 0.5rem; }
    .video-release .display-title { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .store-header .display-title,
    .gig-dates-header .display-title { font-size: 2.5rem; }
    .video-slides-grid { grid-template-columns: 1fr !important; }

    /* Rights Marketplace & Deal Drawer Mobile Overrides */
    .rights-section { padding: 6rem 1.5rem !important; }
    
    .right-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    .right-item-left {
        width: 100%;
        min-width: 100%;
    }
    .track-waveform {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .right-item-actions {
        width: 100%;
    }
    .right-item-actions .btn-rights {
        width: 100%;
        text-align: center;
        display: block;
    }

    .deal-drawer {
        width: 100%;
        right: -100%;
    }
    .drawer-content {
        padding: 2.5rem 1.5rem;
    }
    .close-drawer-btn {
        top: 1.5rem;
        right: 1.5rem;
    }
    .deal-metric-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .metric-value {
        font-size: 1.6rem;
    }
    
    /* Software Generator Mobile Overrides */
    .software-section { padding: 6rem 1.5rem !important; }
    
    .generator-card {
        padding: 1.5rem;
    }
    .generator-inner-actions {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .generator-controls-row {
        flex-direction: column;
        align-items: stretch;
    }
    .controls-left {
        width: 100%;
    }
    .controls-right {
        width: 100%;
        margin-top: 0.5rem;
    }
    .btn-generate {
        width: 100%;
    }
    .duration-selector {
        flex-wrap: wrap;
    }

    /* About Detail Sections Mobile Layout */
    .about-detail-container {
        gap: 5rem;
        margin-top: 5rem !important;
    }
    .about-detail-section {
        padding-top: 3rem;
        gap: 1.5rem;
    }
    .about-detail-section .small-title {
        font-size: 1.8rem;
    }
    .features-grid, .network-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
        grid-column: span 1 !important;
    }
    .network-card {
        padding: 1.5rem;
        grid-column: span 1 !important;
    }
}

/* =========================================
   LICENSING & PRICING PAGE STYLES
   ========================================= */

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

.pricing-card {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--yelo-primary);
}

.pricing-card.featured {
    border-color: var(--yelo-primary);
    background: rgba(20, 20, 20, 0.9);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yelo-primary);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--yelo-primary);
    line-height: 1;
}

.pricing-header .price span {
    font-size: 1.2rem;
    color: var(--tech-gray);
    font-weight: 400;
}

.pricing-header .billing {
    color: var(--tech-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-color);
}

.pricing-features li i.fa-check {
    color: var(--yelo-primary);
    margin-top: 4px;
}

.pricing-features li.disabled {
    color: var(--tech-gray);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--tech-gray);
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: none;
    color: var(--tech-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   Portfolio Grid Styles
   =========================== */
.portfolio-card {
    border: 1px solid var(--border-color) !important;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--yelo-primary) !important;
    box-shadow: 0 10px 30px rgba(217, 255, 0, 0.05);
}

.portfolio-card .track-waveform {
    cursor: pointer;
}

/* ===========================
   Unified Audio Player Console
   =========================== */
.player-console {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.75) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 3rem auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.player-console:hover {
    border-color: rgba(217, 255, 0, 0.25);
    box-shadow: 0 20px 40px rgba(217, 255, 0, 0.05);
}

.player-header {
    text-align: center;
    margin-bottom: 2rem;
}

.player-header .track-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.player-header .playlist-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yelo-primary);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.console-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1rem;
}

.console-btn.play-pause-btn {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.console-btn:hover {
    border-color: var(--yelo-primary);
    color: #000;
    background: var(--yelo-primary);
    box-shadow: 0 0 15px rgba(217, 255, 0, 0.3);
}

.player-progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.progress-time {
    font-size: 0.8rem;
    font-family: monospace;
    color: var(--text-secondary);
    min-width: 45px;
}

.progress-slider-wrapper {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--yelo-primary);
    border-radius: 3px;
    pointer-events: none;
}

.player-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-track-counter {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.player-action-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
}

/* ===========================
   Portfolio Page Split Layout
   =========================== */
.portfolio-layout {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-player-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.portfolio-list-sidebar {
    flex: 1.3;
}

.portfolio-project-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-project-row:hover,
.portfolio-project-row.active-project {
    background: rgba(217, 255, 0, 0.03);
    border-color: var(--yelo-primary);
}

.portfolio-project-row h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.portfolio-project-row:hover h3,
.portfolio-project-row.active-project h3 {
    color: var(--yelo-primary);
}

.portfolio-project-row p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .portfolio-layout {
        flex-direction: column !important;
        gap: 2.5rem !important;
    }
    .portfolio-player-sidebar {
        position: static !important;
        width: 100% !important;
    }
    .portfolio-list-sidebar {
        width: 100% !important;
    }
}

/* Offer Form Controls */
#make-offer-form input:focus,
#make-offer-form textarea:focus {
    border-color: var(--yelo-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 0 10px rgba(217, 255, 0, 0.1);
}

/* Spotify Grid Layout */
.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spotify-embed {
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
}

.spotify-embed iframe {
    max-width: 100%;
}

.spotify-embed:hover {
    transform: translateY(-5px);
}

/* Coming Soon Badge & Overlay */
.badge-soon {
    background: linear-gradient(135deg, var(--yelo-primary), #d9ff00);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-left: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
    display: inline-block;
    box-shadow: 0 0 10px rgba(217, 255, 0, 0.4);
    animation: pulse-glow 2s infinite;
}

.badge-soon.large {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    margin-left: 0;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px rgba(217, 255, 0, 0.2); }
    50% { box-shadow: 0 0 15px rgba(217, 255, 0, 0.6); }
    100% { box-shadow: 0 0 5px rgba(217, 255, 0, 0.2); }
}

.coming-soon-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}
