* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a1b24;
    --accent-orange: #f37421;
    --accent-cyan: #00d4ff;
    --text-light: #ffffff;
    --text-gray: #a0a0b0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --spotlight-radius: 110px; /* controls logo hover glow size */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #000;
}



body {
    background: linear-gradient(135deg, #1e2227 0%, #040608 100%);
    background-color: #000;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}



/* Apply Jersey 25 to all headings */
h1, h2, h3, h4, h5, h6 {
font-family: 'Cal Sans', cursive;
}

/* Apply Kantumruy to all body text */
body, p, span, li {
font-family: 'Kantumruy Pro', sans-serif;
}


/* Black Friday Banner */
.black-friday-banner {
    width: 400px;
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    margin-top: 42px;
    border: none;
    border-radius: 20px;
    color: black;
    text-align: center;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 10px 16px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Unbounded', cursive; 
    text-transform: uppercase;
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.black-friday-banner span {
    animation: pulse 2s ease-in-out infinite alternate;
}

.banner-text {
    font-family: 'Unbounded', cursive;
    font-weight: 500;
}

/* Countdown Below Tagline */
.countdown-below-tagline {
    margin-bottom: clamp(5px, 8vw, 85px);
    margin-top: 16px;
    font-family: 'Unbounded', cursive;
    text-transform: uppercase;
    text-align: left;
}

.countdown-label {
    font-size: clamp(11px, 1.8vw, 18px);
    font-weight: 100;
    color: white;
    display: block;
    margin-bottom: clamp(-10px, -0.5vw, -5px);
}

.countdown-time {
    font-weight: 700;
    font-size: clamp(10px, 4vw, 40px);
    letter-spacing: 3px;
    color: var(--accent-orange);
    font-family: 'Cal Sans', sans-serif;
}

/* Price Tag */
.price-tag {
    background: linear-gradient(135deg, #000000ad, #29292998);
    border-radius: 50%;
    margin-left: 20px;
    width: 170px;
    height: 170px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: rotate(-6deg);
    padding: 15px;
    z-index: 200;
}

.price-tag-label {
    font-family: 'Cal Sans', cursive;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1;
}

.price-tag-label-save {
    font-family: 'Cal Sans', cursive;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: #f37421;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
    line-height: 1;
}

.price-tag-prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #4a5568;
}

.original-price {
    font-family: 'Cal Sans', cursive;
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-decoration: line-through;
    text-decoration-color: var(--accent-orange);
    text-decoration-thickness: 4px;
    line-height: 1;
}
.original-price-euro-sign {
    font-family: 'Cal Sans', cursive;
    font-weight: 400;
}

.sale-price {
    font-family: 'Cal Sans', cursive;
    font-size: 40px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.sale-price-euro-sign {
    font-family: 'Cal Sans', cursive;
    font-weight: 400;
}

/* Hero Buy Area */
.hero-buy-area {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: none;
    padding: 0;
    transform: translateY(0);
    transition: transform 0.35s ease, background 0.3s ease;
    will-change: transform;
}

.header.hidden {
    transform: translateY(-110%);
}

.header.scrolled {
    background: rgba(20, 22, 25, 0.7);
    backdrop-filter: blur(10px);
    padding: 0px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.hahmo-logo {
    width: 150px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo-link:hover .hahmo-logo {
    opacity: 1;
}


.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-divider {
    width: 1px;
    height: 25px;
    background: white;
    margin: 0 5px;
    transform: translateX(-25px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Cal Sans', cursive;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-subtle);
}

.login-link.logged-in {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.login-link::before {
    content: '';
    width: 40px;
    height: 40px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1333.3 1333.3'%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M444.6,923.6c6.4-93.5,72.2-174.6,162.6-199.6,18.7,7.1,38.3,10.7,58.6,10.7s40.5-3.7,59.3-11c91,24.7,157.2,105.9,163.6,199.9-59.6,51.6-137.2,82.8-222.1,82.8s-162.5-31.2-222-82.8ZM625.6,654.2c-32.2-15.4-53-48.5-53-84.1,0-51.4,41.8-93.2,93.2-93.2s93.2,41.8,93.2,93.2-20.2,68.2-52.6,84h0c-12.7,6.1-26.3,9.3-40.6,9.3s-27.6-3.1-40.2-9.1h0ZM666.7,326.9c187.3,0,339.8,152.4,339.8,339.8s-21.3,135-57.6,189.1c-11-37.4-29.3-72.5-54.1-102.9-27.5-33.7-62.1-60.8-100.9-79.5,23.2-28.9,36.7-65.3,36.7-103.3,0-90.8-73.9-164.7-164.7-164.7s-164.7,73.9-164.7,164.7,13.6,75,37.1,103.9c-38.5,18.7-72.8,45.8-100.1,79.4-24.6,30.3-42.8,65.3-53.7,102.4-36.4-54.1-57.6-119.2-57.6-189.1,0-187.3,152.4-339.8,339.8-339.8h0ZM666.7,255.4c-226.8,0-411.2,184.5-411.2,411.2s184.5,411.2,411.2,411.2,411.2-184.5,411.2-411.2-184.5-411.2-411.2-411.2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.login-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* User Info (when logged in) */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Cal Sans', cursive;
    opacity: 0.9;
}

.user-menu-container {
    position: relative;
}

.user-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1333.3 1333.3'%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill:%2300d4ff;%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M444.6,923.6c6.4-93.5,72.2-174.6,162.6-199.6,18.7,7.1,38.3,10.7,58.6,10.7s40.5-3.7,59.3-11c91,24.7,157.2,105.9,163.6,199.9-59.6,51.6-137.2,82.8-222.1,82.8s-162.5-31.2-222-82.8ZM625.6,654.2c-32.2-15.4-53-48.5-53-84.1,0-51.4,41.8-93.2,93.2-93.2s93.2,41.8,93.2,93.2-20.2,68.2-52.6,84h0c-12.7,6.1-26.3,9.3-40.6,9.3s-27.6-3.1-40.2-9.1h0ZM666.7,326.9c187.3,0,339.8,152.4,339.8,339.8s-21.3,135-57.6,189.1c-11-37.4-29.3-72.5-54.1-102.9-27.5-33.7-62.1-60.8-100.9-79.5,23.2-28.9,36.7-65.3,36.7-103.3,0-90.8-73.9-164.7-164.7-164.7s-164.7,73.9-164.7,164.7,13.6,75,37.1,103.9c-38.5,18.7-72.8,45.8-100.1,79.4-24.6,30.3-42.8,65.3-53.7,102.4-36.4-54.1-57.6-119.2-57.6-189.1,0-187.3,152.4-339.8,339.8-339.8h0ZM666.7,255.4c-226.8,0-411.2,184.5-411.2,411.2s184.5,411.2,411.2,411.2,411.2-184.5,411.2-411.2-184.5-411.2-411.2-411.2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

.user-icon:hover {
    background-color: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: scale(1.1);
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(40, 42, 48, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    min-width: 180px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.user-dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-family: 'Cal Sans', cursive;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.user-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.user-menu-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.user-menu-item.logout-item {
    color: #ff6b6b;
}

.user-menu-item.logout-item:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.buy-button-header {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Cal Sans', cursive;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.buy-button-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -140%;
    width: 120%;
    height: 200%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 35%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.25) 65%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.buy-button-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(243, 116, 33, 0.32);
}

.buy-button-header:hover::before {
    left: 140%;
}

/* Mobile banner + header spacing */
@media (max-width: 768px) {
    .black-friday-banner {
        width: 100%;
        left: 0;
        transform: translateY(0);
        border-radius: 0;
        margin: 0;
        padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 10px 16px;
        top: env(safe-area-inset-top, 0px);
        transition: transform 0.35s ease;
    }

    .black-friday-banner.hidden {
        transform: translateY(-130%);
    }

    .header,
    .header.scrolled {
        top: 0 !important;
    }


}



/* Hero Section */
.hero {
    position: relative;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 50px;
    padding-top: -55px;
    background-image: url('/images/superclassic-heroshot.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}


.hero-content {
    z-index: 20;
    padding: 0 clamp(10px, 3vw, 40px);
    animation: fadeInUp 1s ease;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(20px, 8vw, 60px);
}

.hero-left {
    flex: 1;
    margin-top: 170px;
    margin-bottom: 70px;

}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    position: relative;
}

.hero-gui-shot {
    position: absolute;
    top: 0px;
    right: clamp(20px, 4vw, 40px);
    width: clamp(280px, 35vw, 600px);
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
    animation: fadeInUp 1s ease;
}

.hero-gui-shot-mobile {
    display: none;
}


body {
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="1" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.4"/></svg>');
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    mix-blend-mode: overlay;
}

.orange-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 400px;
    background: #f37421;
    z-index: 9999;
}



@keyframes pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-buy-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);
    margin-top: clamp(-20px, -2.5vw, -25px);
    justify-content: flex-start;
}

.hero-audio-section {
    margin-top: clamp(20px, 4vw, 40px);
}

/* Hero Audio Frame */
.hero-audio-frame {
    background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

.centered-buy-button {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Cal Sans', cursive;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.centered-buy-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -140%;
    width: 120%;
    height: 200%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 35%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.25) 65%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.centered-buy-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(243, 116, 33, 0.34);
}

.centered-buy-button:hover::before {
    left: 140%;
}

.instant-download {
    display: block;
    font-size: 9px;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0px;
    opacity: 0.8;
    text-align: center;
}

.plugin-formats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    opacity: 0.8;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.format-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vst3-logo {
    width: 35px;
    height: auto;
}

.format-separator {
    width: 1px;
    height: 20px;
    background-color: white;
    opacity: 0.6;
}

.format-text {
    color: #cedae3;
    font-family: 'Cal Sans', cursive;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.platform-text {
    color: #cedae3;
    font-family: 'Cal Sans', cursive;
    font-size: 12px;
    font-weight: 400;
}

.platform-separator {
    color: #cedae3;
    font-size: 12px;
    opacity: 0.7;
}

.format-label,
.platform-label {
    color: #cedae3;
    font-family: 'Cal Sans', cursive;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.logo-container {
    position: relative;
    width: min(704px, 74.8vw);
    margin-bottom: clamp(40px, 4vw, 50px);
    top: 5px;
    cursor: pointer;
}


.superclassic-logo {
    width: 100%;
    height: auto;
    filter: none;
    position: relative;
    z-index: 1;
}

.superclassic-logo {
    transition: mask 0.5s ease;
}

.logo-container:hover .superclassic-logo {
    mask: radial-gradient(circle var(--spotlight-radius) at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent 0%, transparent 40%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.7) 80%, black 100%);
    -webkit-mask: radial-gradient(circle var(--spotlight-radius) at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent 0%, transparent 40%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.7) 80%, black 100%);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, --mouse-x 0.3s ease-out, --mouse-y 0.3s ease-out;
    pointer-events: none;
    z-index: 2;
    mask: radial-gradient(circle var(--spotlight-radius) at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, black 40%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.3) 80%, transparent 100%);
    -webkit-mask: radial-gradient(circle var(--spotlight-radius) at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, black 40%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.3) 80%, transparent 100%);
}

.logo-container:hover .logo-overlay {
    opacity: 1;
}


.logo-overlay path,
.logo-overlay rect {
    fill: transparent;
    stroke: #f37421;
    stroke-width: 2;
}


.tagline {
    font-size: clamp(10px, 5vw, 45px);
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: -2.5vh;
    position: relative;
    color: white;
    text-align: left; /* you can keep this always */
}

.subhead {
    font-family: 'Kantumruy Pro' , cursive;
    font-size: clamp(10px, 2.5vw, 18px);
    font-weight: 0;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: clamp(40px, 5vw, 70px);
    color: rgba(255, 255, 255, 0.6);
    text-shadow: none;
    text-align: left;
    max-width: clamp(380px, 80%, 700px);

}

.subhead strong {
    font-family: 'Kantumruy Pro', cursive;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}


/* Menu Section */
.menu-section {
    position: absolute;
    top: calc(50% - 200px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    padding: 0;
    background: none;
    border: none;
}

.menu-container {
    background: linear-gradient(135deg, 
        rgba(34, 39, 42, 0.95) 0%, 
        rgba(20, 22, 23, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 20px;
    padding: 8px 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 900px;
    min-width: 0;
}

.menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.menu-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Cal Sans', cursive;
    padding: 6px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    white-space: nowrap;
}

.menu-link:hover {
    color: var(--accent-orange);
    background: none;
    border-color: transparent;
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(243, 116, 33, 0.6);
}

.menu-buy-button {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    color: white !important;
    font-weight: 500;
    border: none;
}

.menu-buy-button:hover {
    background: linear-gradient(135deg, #ff5722, var(--accent-orange));
    transform: translateY(-2px);
}

@media (max-width: 900px) {


    .hero,
    .video-section {
        width: 100%;
        margin-left: 0;
    }
}
.purchase-terms {
    max-width: 300px;
}        
.purchase-terms-lower {
    margin: 30px auto;
    max-width: 400px;
}
.hero-audio-players {
    display: flex;
    flex-direction: column;
}

.purchase-terms {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-gray);
    opacity: 0.8;
}

.purchase-terms a {
    color: var(--text-gray);
    text-decoration: underline;
}

.purchase-terms a:hover {
    color: var(--accent-orange);
}        
.purchase-terms-lower {
    font-size: 12px;
    color: var(--text-gray);
    opacity: 0.8;
}

.purchase-terms-lower a {
    color: var(--text-gray);
    text-decoration: underline;
}

.purchase-terms-lower a:hover {
    color: var(--accent-orange);
}







/* Video Section */
.video-section {
    padding: 0;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.video-container {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: none;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(243, 116, 33, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-play-button:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.video-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Video Section Mobile */
@media (max-width: 768px) {
    .video-placeholder {
        height: 400px;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button::before {
        border-left: 15px solid white;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        margin-left: 3px;
    }

}


/* Hero Audio Frame */
.hero-audio-frame {
    border-radius: 16px;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 0 0px;
    display: block;
    transform: scale(1);
    z-index: 10;
    will-change: transform;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);

}




/* Hero Audio Players */
.hero-audio-players {
    display: flex;
}

.hero-audio-player {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0px 0;
    transition: all 0.3s ease;
}

.hero-audio-player:hover {
    transform: translateY(-2px);
}

.hero-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-play-button {
    width: 64px;
    height: 64px;
    background: none;
    border: none;
    color: var(--accent-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.hero-audio-player:first-child .hero-play-button {
    color: var(--accent-cyan);
}

.hero-play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Play Button SVG Styling */
.hero-play-button .play-icon,
.hero-play-button .pause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-play-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-audio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-audio-title {
    font-size: 14px;
    color: var(--accent-orange);
    font-weight: 600;
    font-family: 'Cal Sans', cursive;
}

.hero-audio-player:first-child .hero-audio-title {
    color: var(--accent-cyan);
}

.hero-audio-player:last-child .hero-audio-title {
    color: var(--accent-orange);
}

.hero-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.hero-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), #ff5722);
    width: 0%;
    transition: width 0.1s ease;
}

.hero-audio-player:first-child .hero-progress-fill {
    background: linear-gradient(90deg, var(--accent-cyan), #0099cc);
}

.hear-more-link {
    display: block;
    margin-top: 15px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 12px;
    font-family: 'Cal Sans', cursive;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-align: center;
}

.hear-more-link:hover {
    color: var(--accent-orange);
    opacity: 1;
    text-decoration: underline;
}

.hero-cta {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-family: 'Cal Sans', cursive;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -140%;
    width: 120%;
    height: 200%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 35%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.25) 65%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(243, 116, 33, 0.35);
}

.hero-cta:hover::before {
    left: 140%;
}


@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.price {
    display: block;
    font-size: 14px;
    opacity: 0.95;
    margin-top: 5px;
}

.cta-smallprint {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
    letter-spacing: 0.2px;
}

/* Main Content */
.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 30px;
    margin-top: -75px;
}

.intro {
    text-align: left;
    margin-bottom: 100px;
    margin-top: 50px;
    animation: fadeIn 1s ease;
    max-width: 1200px;
    margin-left: clamp(0px, 4vw, 50px);
    margin-right: clamp(0px, 2vw, 20px);
}

.intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 30px;
    background: #f37421;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text {
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 0;
    text-align: left;
    border-left: 4px solid var(--accent-orange);
    padding-left: 20px;
}

.intro-text strong {
    color: var(--text-light);
    font-weight: 500;
}

/* Intro Content Layout */
.intro-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-video {
    flex: 0 0 auto;
    width: clamp(320px, 40vw, 560px);
}

.intro-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: none;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-video {
        width: 100%;
        max-width: 560px;
        order: 1;
        margin-left: 15px;
        margin-top: 5px;
    }
    
    .intro-text {
        order: 0;
    }
    
    .intro-video iframe {
        height: auto;
        aspect-ratio: 16/9;
    }

    .intro {

    margin-left: 0px;

}

}

/* Features Grid */
.features {
    margin-bottom: 100px;
    perspective: 1000px;
}

.section-title {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.features-carousel {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
    overflow: hidden;
}

.features-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 200%;
    padding: 0 20px;
}

.feature-slide {
    display: flex;
    gap: 40px;
    min-width: 50%;
    width: 50%;
    padding: 0 20px;
}


.feature-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 25px 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    position: relative;
    min-height: 150px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    transition: left 0.6s ease;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(243, 116, 33, 0.15) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    border-color: rgba(243, 116, 33, 0.5);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 15px 35px rgba(243, 116, 33, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover::after {
    opacity: 1;
}


.feature-title {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--accent-orange);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-weight: 600;
}

.feature-card:nth-child(2) .feature-title,
.feature-card:nth-child(4) .feature-title,
.feature-card:nth-child(6) .feature-title {
    color: var(--accent-cyan);
}

.feature-card:hover .feature-title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(243, 116, 33, 0.5);
    transform: translateY(-2px);
}

.feature-card:nth-child(2):hover .feature-title,
.feature-card:nth-child(4):hover .feature-title,
.feature-card:nth-child(6):hover .feature-title {
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.5);
}

.feature-description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Features Navigation */
.features-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

/* Testimonials */
.testimonials {
    margin-bottom: 100px;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 80px;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: calc(100% * 3);
    margin-top: 30px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 30px;
    padding-bottom: 20px;

}

.testimonial-slide {
    display: flex;
    gap: 30px;
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
    padding: 0 20px;
}

.testimonial {
    position: relative;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.15),
        rgba(0, 153, 204, 0.08),
        rgba(0, 212, 255, 0.05)
    );
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0;
    align-items: stretch;
    height: 900px;
    max-width: 1200px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 212, 255, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    flex: 1;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(0, 212, 255, 0.15) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 620px;
    font-size: 120px;
    color: rgba(0, 212, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-image {
    position: relative;
    height: 500px;
    flex-shrink: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 50px), transparent 100%);
    mask-image: linear-gradient(to bottom, black calc(100% - 50px), transparent 100%);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.15);
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
}

.testimonial-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(0, 212, 255, 0.05) 30%,
        rgba(0, 153, 204, 0.08) 60%,
        rgba(0, 212, 255, 0.15) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.testimonial-orange .testimonial-image::before {
    background: rgba(243, 116, 33, 0.15);
}

.testimonial-orange .testimonial-image::after {
    background: linear-gradient(to right,
        transparent 0%,
        rgba(243, 116, 33, 0.05) 30%,
        rgba(255, 87, 34, 0.08) 60%,
        rgba(243, 116, 33, 0.15) 100%
    );
}

.image-bottom-fade {
    display: none;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px;
    position: relative;
    z-index: 2;
}

.testimonial:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.6),
        0 15px 35px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial:hover::after {
    opacity: 1;
}

.quote {
    font-style: italic;
    margin-top: 0px;
    margin-bottom: 25px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.quote-long {
    font-style: italic;
    margin-top: -30px;
    margin-bottom: 25px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.quote-author {
    color: var(--accent-cyan);
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.quote-author::before {
    content: '';
    margin-right: 0;
    opacity: 0.7;
}

/* Orange testimonial variant */
.testimonial-orange {
    background: linear-gradient(135deg, 
        rgba(243, 116, 33, 0.15), 
        rgba(255, 87, 34, 0.08),
        rgba(243, 116, 33, 0.05));
    border: 2px solid rgba(243, 116, 33, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(243, 116, 33, 0.2);
}

.testimonial-orange::before {
    color: rgba(243, 116, 33, 0.2);
}

.testimonial-orange::after {
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(243, 116, 33, 0.15) 0%, 
        transparent 50%);
}

.testimonial-orange:hover {
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.6),
        0 15px 35px rgba(243, 116, 33, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-orange .quote-author {
    color: var(--accent-orange);
}

/* Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin: 15px; /* Add margin to prevent glow cutoff */
    margin-bottom: 30px;
}

.nav-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent-cyan);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.nav-dots {
    display: flex;
    gap: 12px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(0, 212, 255, 0.5);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--accent-cyan);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Audio Demos */
.audio-demos {
    margin-bottom: 100px;
}

.audio-players {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 30px;
}

.audio-player-row {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.audio-player {
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.3s ease;
    min-height: 100px;
    max-width: 480px;
}

.audio-player:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Orange theme players */
.audio-player-orange {
    border-color: rgba(243, 116, 33, 0.2);
}

.audio-player-orange:hover {
    border-color: rgba(243, 116, 33, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(243, 116, 33, 0.1);
}

.audio-player-orange .audio-title {
    color: var(--accent-orange);
}

.audio-player-orange .play-button {
    color: var(--accent-orange);
}

.audio-player-orange .progress-fill {
    background: linear-gradient(90deg, var(--accent-orange), #ff5722);
}

.audio-player-orange .wave-bar {
    background: linear-gradient(to top, var(--accent-orange), rgba(243, 116, 33, 0.3));
}

/* Cyan theme players */
.audio-player-cyan {
    border-color: rgba(0, 212, 255, 0.2);
}

.audio-player-cyan:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 212, 255, 0.1);
}

.audio-player-cyan .audio-title {
    color: var(--accent-cyan);
}

.audio-player-cyan .play-button {
    color: var(--accent-cyan);
}

.audio-player-cyan .progress-fill {
    background: linear-gradient(90deg, var(--accent-cyan), #0099cc);
}

.audio-player-cyan .wave-bar {
    background: linear-gradient(to top, var(--accent-cyan), rgba(0, 212, 255, 0.3));
}

.audio-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.play-button {
    width: 70px;
    height: 70px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.play-button:hover {
    transform: scale(1.05);
}

/* Main Play Button SVG Styling */
.play-button .play-icon,
.play-button .pause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.play-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    font-size: 12px;
    color: var(--text-gray);
    font-family: monospace;
}

.waveform {
    display: flex;
    align-items: end;
    gap: 1px;
    height: 20px;
    padding: 2px 0;
}

.wave-bar {
    flex: 1;
    min-height: 2px;
    border-radius: 1px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.audio-player:hover .wave-bar {
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px;
}

.faq-container {
    margin-top: 60px;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 16px;
    background: var(--card-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-orange);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 24px 30px 30px 30px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--accent-orange);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 20px 20px 24px 20px;
        font-size: 14px;
    }

    .faq-toggle {
        margin-left: 10px;
        font-size: 20px;
    }


}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 30px;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}


/* Footer */
.footer {
    text-align: center;
    padding: 40px 30px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-gray);
    font-size: 14px;
}

.site-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px 0;
    margin-top: 100px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-company {
    color: var(--text-gray);
    line-height: 1.4;
}

.footer-company p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
    }
    
    .site-footer {
        padding: 30px 0 15px 0;
        margin-top: 60px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


        /* Menu Section Mobile */
@media (max-width: 768px) {


    .hero-content {
        gap: 20px;
    }

    .subhead {
    font-size: clamp(12px, 2.5vw, 18px);

}


    .hero-buy-section {
        margin-top: -20px;
    }

    .hero-audio-section {
        margin-top: 20px;
    }    

    .menu-buy-button {
        order: -1;
        margin-bottom: 5px;
    }

     .hero {
        background-image: url('/images/superclassic-heroshot-mobile.jpg');
        padding-left: 20px;
        background-position: top;
    }

    .logoandtagline {
        margin-top: 30px;
    }

}

/* Mobile Responsive */
@media (max-width: 768px) {


     .buy-button-header {
         display:none;
    }

    .orange-border {
        visibility: hidden;
    }
    .header-content {
        padding: 0;
    }

    .hahmo-logo {
        width: 120px;
    }

    .header-left {
        gap: 10px;
    }

    .header-divider {
        height: 20px;
        margin: 0 3px;
    }

    .header-actions {
        margin-right: 10px;
        gap: 15px;
    }

    .login-link {
       font-size: 14px;
    }
    
    .user-info {
        gap: 8px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .user-icon {
        width: 35px;
        height: 35px;
    }
    
    .user-dropdown-menu {
        min-width: 160px;
        right: -10px;
    }
    
    .user-menu-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .user-menu-item svg {
        width: 14px;
        height: 14px;
    }

    .buy-button-header {
        padding: 8px 18px;
        font-size: 14px;
    }


    .content {
        padding: 20px 20px 60px 20px;
        margin-top: 0px;
    }

    .features-carousel {
        padding: 0;
        overflow: hidden;
    }

    .features-container {
        display: flex;
        gap: 20px;
        width: 100%;
        padding: 0 16px 12px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
    }

    .features-container::-webkit-scrollbar {
        display: none;
    }

    .feature-slide {
        display: contents;
    }

    .feature-card {
        padding: 25px 20px;
        min-height: 180px;
        max-height: none;
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
    }

    .features-nav {
        gap: 20px;
        margin-top: 30px;
    }

    .testimonials-carousel {
        padding-left: 0px;
        padding-right: 0px;
        overflow: hidden;
    }

    .testimonials-container {
        display: flex;
        gap: 20px;
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-container::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slide {
        /* Remove the slide wrapper from layout on mobile */
        display: contents;
    }

    .testimonial {
        flex-direction: column;
        height: auto;
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }

    .testimonial-image {
        width: 100%;
        height: 400px;
    }

    .testimonial-image::after {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 212, 255, 0.05) 30%,
            rgba(0, 153, 204, 0.08) 60%,
            rgba(0, 212, 255, 0.15) 100%
        );
    }

    .testimonial-orange .testimonial-image::after {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(243, 116, 33, 0.05) 30%,
            rgba(255, 87, 34, 0.08) 60%,
            rgba(243, 116, 33, 0.15) 100%
        );
    }

    .image-bottom-fade {
        display: none;
    }

    .testimonial-content {
        padding: 20px 20px;
    }

    .testimonial::before {
        left: 25px;
        font-size: 80px;
    }

    .testimonials-nav {
        gap: 20px;
        margin-top: 40px;
    }

    .quote {
    margin-top: 20px;
}
    .quote-long {
    margin-top: -40px;
    font-size: 14px;
}

    .nav-dots {
        gap: 8px;
    }

    .nav-dot {
        width: 8px;
        height: 8px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }

    .features-carousel {
        padding: 0;
        overflow: hidden;
    }

    .features-container {
        display: flex;
        gap: 20px;
        width: 100%;
        padding: 0 16px 12px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
    }

    .features-container::-webkit-scrollbar {
        display: none;
    }

    .feature-slide {
        display: contents;
    }

    .feature-card {
        padding: 25px 20px;
        min-height: 180px;
        max-height: none;
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
    }

    .features-nav {
        gap: 20px;
        margin-top: 30px;
    }

    .audio-players {
        padding: 0 20px;
    }

    .audio-player-row {
        flex-direction: column;
        gap: 20px;
    }

    .audio-player {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }


    .price-tag {
        margin-left: auto;
        width: 160px;
        height: 160px;
        background: linear-gradient(135deg, #000000e8, #292929c9);
    }

    .superclassic-logo {
          filter: drop-shadow(0 0 10px #00000054);


    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        display: block;
    }


.hero-left {
    flex: 1;
    margin-top: 140px;

}

    .hero-right {
        max-width: 100%;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero-audio-frame {
        border-radius: 12px;
        transform: none;
        margin-right: 0px !important;
        width: 240px;
        background: none;
        border: 0;
        box-shadow: none;
    }


    .hero-audio-player {
        padding: 6px 0;
    }

    .hero-play-button {
        width: 48px;
        height: 48px;
    }

    .hero-audio-title {
        font-size: 13px;
    }

    .hear-more-link {
        font-size: 11px;

    }

    .hero-gui-shot {
        position: static;
        margin: 30px auto 40px auto;
        display: block;
        right: auto;
        top: auto;
        width: clamp(380px, 90vw, 580px);

    }

    .hero-buy-section {
        margin-top: 20px !important;
        margin-left: 0 !important;
        }

    .hero-audio-section {
    order: 999;
    max-width: 100%;         /* prevent overflow */
    }

    .menu-section {
        visibility: hidden;
    }

    .menu-container {
        visibility: hidden;
    }

    .menu-nav {
        visibility: hidden;
    }

    .menu-link {
        visibility: hidden;
    }

}

/* Client Login Section */
.client-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.client-login.active {
    display: block;
    animation: fadeInModal 0.3s ease forwards;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.client-login-container {
    max-width: 500px;
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: slideInModal 0.3s ease forwards;
}

.client-login-container.portal-mode {
    max-width: 75%;
    width: 75%;
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

.login-form-container {
    background: linear-gradient(135deg, 
        rgba(34, 39, 42, 0.95) 0%, 
        rgba(8, 10, 11, 0.98) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.client-login-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--accent-orange);
}

.client-login-subtitle { /* unused after removal; keep for fallback */
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Login modal logo sizing to match site header */
.login-form-container .hahmo-logo {
    width: 140px;
    height: auto;
    opacity: 0.95;
    margin-bottom: 12px;
}

.client-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 20px;
}

.auth-toggle {
    display: inline-block;
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}
.auth-toggle:hover { color: var(--accent-orange); text-decoration: underline; }

.login-privacy-notice {
    margin-top: 20px;
    padding: 15px;
    background: rgba(243, 116, 33, 0.08);
    border: 1px solid rgba(243, 116, 33, 0.2);
    border-radius: 8px;
}

.login-privacy-notice p {
    margin: 0;
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
}

.login-privacy-notice a {
    color: var(--accent-orange);
    text-decoration: none;
}

.login-privacy-notice a:hover {
    text-decoration: underline;
}

.login-support {
    margin-top: 15px;
    text-align: center;
}

.login-support p {
    margin: 0;
    font-size: 13px;
    color: var(--text-gray);
}

.login-support a {
    color: var(--accent-orange);
    text-decoration: none;
}

.login-support a:hover {
    text-decoration: underline;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(243, 116, 33, 0.2);
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.client-login-btn {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.client-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 116, 33, 0.3);
}

.login-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.login-error p {
    color: #ff3b30;
    margin: 0;
    font-size: 14px;
}

/* Inline success message in login modal */
.login-success {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.login-success p {
    color: var(--accent-cyan);
    margin: 0;
    font-size: 14px;
}

/* Download Container */
.download-container {
    background: linear-gradient(135deg, 
        rgba(26, 27, 36, 0.95) 0%, 
        rgba(26, 27, 36, 0.98) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
    max-width: none;
}

.download-title {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.license-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.license-info p {
    margin: 5px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.license-info strong {
    color: var(--text-light);
}

.download-links h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 20px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), #0099cc);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.download-btn.download-vst {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
}

.download-btn.download-vst:hover {
    box-shadow: 0 8px 25px rgba(243, 116, 33, 0.3);
}

.download-btn.download-manual {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.download-btn.download-manual:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.download-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    background: transparent;
    color: inherit;
    fill: currentColor;
}

/* License Portal */
.license-portal {
    width: 100%;
    padding: 0 60px;
    text-align: left;
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.portal-welcome {
    flex: 1;
}

.portal-title {
    color: var(--accent-orange);
    font-size: 24px;
    font-family: 'Cal Sans', cursive;
    margin-bottom: 4px;
}

.portal-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.portal-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Cal Sans', cursive;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Cal Sans', cursive;
}

.user-email {
    color: var(--text-gray);
    font-size: 13px;
    opacity: 0.8;
}


/* Products Section */
.products-section {
    margin-bottom: 40px;
}

.section-title {
    color: var(--accent-orange);
    font-size: 24px;
    font-family: 'Cal Sans', cursive;
    margin-bottom: 30px;
}

.product-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
    border-color: rgba(243, 116, 33, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-header {
    padding: 24px;
    background: linear-gradient(135deg, rgba(40, 42, 48, 0.8), rgba(32, 35, 40, 0.9));
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-header:hover {
    background: linear-gradient(135deg, rgba(243, 116, 33, 0.2), rgba(243, 116, 33, 0.12));
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Unified toggle triangle component */
.toggle-triangle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    transform-origin: center;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    min-width: 24px;
    min-height: 24px;
    touch-action: manipulation;
}

.toggle-triangle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent-orange);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: inherit;
}

.toggle-triangle:hover {
    background: rgba(243, 116, 33, 0.1);
    transform: scale(1.1) rotate(0deg);
}

.toggle-triangle.expanded {
    transform: rotate(90deg);
}

.toggle-triangle.expanded:hover {
    transform: scale(1.1) rotate(90deg);
}

/* Variant for cyan color (offline activation) */
.toggle-triangle.cyan::after {
    border-left-color: var(--accent-cyan);
}

.toggle-triangle.cyan:hover {
    background: rgba(51, 204, 255, 0.1);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .toggle-triangle {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .centered-buy-button {
    font-size: 16px;
    }
    
    .toggle-triangle::after {
        border-left-width: 10px;
        border-top-width: 7px;
        border-bottom-width: 7px;
    }
    
    /* Touch targets should be at least 44px for accessibility */
    .toggle-triangle::before {
        content: '';
        position: absolute;
        width: 44px;
        height: 44px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        border-radius: 4px;
    }
    
    /* Hover effects are less relevant on mobile, focus on active states */
    .toggle-triangle:active {
        transform: scale(0.95) rotate(0deg);
        background: rgba(243, 116, 33, 0.15);
    }
    
    .toggle-triangle.expanded:active {
        transform: scale(0.95) rotate(90deg);
    }
    
    .toggle-triangle.cyan:active {
        background: rgba(51, 204, 255, 0.15);
    }

    .purchase-terms {
        max-width: 360px;
        margin-top: 14px;
    }
}

/* High DPI display adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .toggle-triangle {
        transform-origin: center;
    }
}


.product-summary {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-gray);
}

.activations-summary,
.version-summary {
    font-weight: 500;
}

.product-details {
    transition: all 0.3s ease;
}

.product-name {
    color: var(--accent-orange);
    font-size: 20px;
    font-family: 'Cal Sans', cursive;
    margin: 0;
    display: flex;
    align-items: center;
}

.product-name .superclassic-logo {
    height: 28px;
    width: auto;
    fill: var(--accent-orange);
}

.product-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-blocked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-inactive {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.product-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    color: var(--text-gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    color: var(--text-light);
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
}

.product-content {
    padding: 24px;
}

/* Devices Section */
.devices-section {
    margin-bottom: 24px;
}

.devices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.devices-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.devices-loading-spinner {
    display: inline-block;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-left: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Confirmation Modal */
.confirmation-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.confirmation-modal-overlay.show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, 
        rgba(40, 42, 48, 0.95) 0%, 
        rgba(32, 35, 40, 0.98) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.confirmation-modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-icon svg {
    color: var(--accent-orange);
    filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.3));
}

.modal-message {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-device-name {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.modal-device-name span {
    color: var(--accent-cyan);
    font-weight: 600;
}

.modal-actions {
    padding: 0 24px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.modal-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.modal-btn-confirm {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
}

.modal-btn-confirm:hover {
    background: linear-gradient(45deg, #e55a2b, #e8851a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 640px) {
    .modal-content {
        margin: 16px;
        width: calc(100% - 32px);
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* Demo Download Modal Styles */
.demo-download-section {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.demo-download-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-family: 'Cal Sans', cursive;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.demo-download-link:hover {
    color: #ff6b35;
    transform: translateY(-1px);
}

.demo-download-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.demo-download-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Modal Base */
.demo-download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-download-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.demo-modal-container {
    position: relative;
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 740px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 16px 32px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-download-modal.active .demo-modal-container {
    transform: scale(1) translateY(0);
}

/* Close Button */
.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.demo-modal-close svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* Modal States */
.demo-state {
    padding: 48px 40px 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.demo-state:not([style*="display: none"]) {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Header */
.demo-modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.demo-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(243, 116, 33, 0.3);
}

.demo-modal-icon.demo-success-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.demo-modal-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.demo-modal-title {
    font-family: 'Cal Sans', cursive;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.demo-modal-subtitle {
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Download Grid */
.demo-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.demo-platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.demo-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.demo-platform-card:hover::before {
    left: 100%;
}

.demo-platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.demo-platform-card[data-platform="mac"]:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 16px 40px rgba(243, 116, 33, 0.2);
}

.demo-platform-card[data-platform="windows"]:hover {
    border-color: #6366f1;
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.2);
}

.demo-platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.demo-platform-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.demo-platform-content {
    flex: 1;
    text-align: left;
}

.demo-platform-name {
    font-family: 'Cal Sans', cursive;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
    letter-spacing: 1px;
}

.demo-platform-desc {
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 8px 0;
}

.demo-platform-format {
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 12px;
    color: var(--accent-orange);
    font-weight: 500;
    background: rgba(243, 116, 33, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.demo-download-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.demo-platform-card:hover .demo-download-icon {
    color: white;
    transform: translateY(-2px);
}

.demo-download-icon svg {
    width: 20px;
    height: 20px;
}

/* Demo Features */
.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.demo-feature svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Footer System Requirements */
.requirements-footer-section {
    max-width: 1200px;
    margin: 70px auto 50px;
    padding: 0 20px;
}

.requirements-footer-title {
    font-family: 'Cal Sans', cursive;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: 0.2px;
}

.requirements-footer-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Demo System Requirements */
.demo-requirements {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.demo-requirements-title {
    font-family: 'Cal Sans', cursive;
    font-size: 16px;
    color: var(--accent-cyan);
    margin: 0 0 16px 0;
    font-weight: 600;
}

.demo-requirements-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-requirement-item {
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.demo-requirement-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.requirements-footer-card.demo-requirements {
    max-width: 750px;
    margin: auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Newsletter Form */
.demo-newsletter-form {
    margin-bottom: 24px;
}

.demo-form-group {
    margin-bottom: 20px;
}

.demo-form-label {
    display: block;
    font-family: 'Cal Sans', cursive;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.demo-form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.demo-form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(243, 116, 33, 0.1);
}

.demo-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.demo-newsletter-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-family: 'Cal Sans', cursive;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(243, 116, 33, 0.4);
}

.demo-newsletter-btn svg {
    width: 18px;
    height: 18px;
}

/* Modal Actions */
.demo-modal-actions {
    margin-bottom: 24px;
    text-align: center;
}

.demo-skip-btn,
.demo-close-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Cal Sans', cursive;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-skip-btn:hover,
.demo-close-btn:hover {
    border-color: var(--accent-orange);
    color: white;
    background: rgba(243, 116, 33, 0.1);
}

.demo-close-btn {
    background: linear-gradient(135deg, var(--accent-orange), #ff5722);
    border: none;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.demo-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(243, 116, 33, 0.4);
    background: linear-gradient(135deg, #ff5722, var(--accent-orange));
}

/* Privacy Notice */
.demo-privacy-notice {
    text-align: center;
    padding: 16px;
    background: rgba(243, 116, 33, 0.05);
    border: 1px solid rgba(243, 116, 33, 0.1);
    border-radius: 10px;
}

.demo-privacy-notice p {
    margin: 0;
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.demo-privacy-notice a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.demo-privacy-notice a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-modal-overlay {
        align-items: flex-start;
        padding: 16px 12px;
    }

    .demo-modal-container {
        margin: 20px;
        width: 92vw;
        max-width: 520px;
        max-height: calc(100vh - 40px);
        border-radius: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .demo-state {
        padding: 32px 24px 24px;
    }
    
    .demo-modal-header {
        margin-bottom: 32px;
    }
    
    .demo-modal-title {
        font-size: 24px;
    }
    
    .demo-modal-subtitle {
        font-size: 14px;
    }
    
    .demo-download-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .demo-platform-card {
        padding: 20px;
        gap: 16px;
    }
    
    .demo-platform-icon {
        width: 40px;
        height: 40px;
    }
    
    .demo-platform-icon svg {
        width: 20px;
        height: 20px;
    }
    
    
    .demo-features {
        padding: 16px;
        gap: 12px;
    }
}

.devices-title {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.activations-badge {
    background: rgba(243, 116, 33, 0.2);
    color: var(--accent-orange);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.devices-table {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.devices-table-header {
    background: rgba(243, 116, 33, 0.1);
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 1fr 140px 80px;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.table-header {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-row {
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr 140px 80px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.device-row:last-child {
    border-bottom: none;
}

.device-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.device-name {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.device-date {
    color: var(--text-gray);
    font-size: 13px;
    text-align: left;
}

.device-actions {
    text-align: right;
}

.deactivate-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.deactivate-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.deactivate-btn.disabled {
    background: #4a5568;
    color: #a0a0a0;
    cursor: not-allowed;
    opacity: 0.6;
    position: relative;
    border-color: #4a5568;
}

.deactivate-btn.disabled:hover {
    background: #4a5568;
    color: #a0a0a0;
    transform: none;
}

/* Tooltip for disabled deactivate button */
.deactivate-btn.disabled[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: normal;
    z-index: 1000;
    margin-bottom: 5px;
    max-width: 250px;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}

.deactivate-btn.disabled[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.no-devices {
    padding: 20px;
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
}

.deactivate-notice {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #60a5fa;
    font-size: 12px;
    line-height: 1.4;
}

/* Downloads Section */
.downloads-section {
    margin-bottom: 0;
}

.downloads-title {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.download-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-item:hover {
    background: rgba(243, 116, 33, 0.1);
    border-color: rgba(243, 116, 33, 0.3);
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.download-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: transparent;
    opacity: 0.8;
    color: inherit;
    fill: currentColor;
}

.download-info {
    flex: 1;
}

.download-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.download-desc {
    font-size: 11px;
    opacity: 0.7;
}

/* Offline Activation Section */
.offline-activation-section {
    margin-bottom: 24px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.offline-activation-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.offline-activation-header:hover {
    background: rgba(0, 212, 255, 0.06);
}

.offline-activation-content {
    padding: 0 20px 20px 20px;
    transition: height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}


.offline-title {
    color: var(--accent-cyan);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.offline-description {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.offline-form {
    margin-bottom: 16px;
}

.offline-form .form-group {
    margin-bottom: 12px;
}

.offline-form label {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.offline-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-family: 'Kantumruy Pro', monospace;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.offline-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.offline-form input::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

/* Custom File Input Container */
.offline-form .file-input-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Hide the actual file input */
.offline-form input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

/* Custom file input overlay */
.offline-form .file-input-overlay {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px dashed var(--border-subtle);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Kantumruy Pro', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    justify-content: center;
    min-height: 50px;
    pointer-events: none; /* Let clicks pass through to the file input */
}

.offline-form .file-input-container:hover .file-input-overlay {
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
}

/* Drag and drop states */
.offline-form .file-input-container.drag-over .file-input-overlay {
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* File selected state */
.offline-form .file-input-container.file-selected .file-input-overlay {
    border-color: #4CAF50;
    border-style: solid;
    background: rgba(76, 175, 80, 0.05);
    color: #4CAF50;
    font-weight: 600;
    text-align: left;
    animation: checkmarkAppear 0.3s ease-out;
}

.offline-form .file-input-container.file-selected .file-input-overlay::before {
    content: "✓ ";
    margin-right: 8px;
}

@keyframes checkmarkAppear {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.offline-generate-btn {
    background: linear-gradient(135deg, var(--accent-cyan), #0099cc);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Cal Sans', cursive;
}

.offline-generate-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.offline-generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.offline-result {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.result-header h5 {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.copy-response-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Cal Sans', cursive;
}

.copy-response-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(243, 116, 33, 0.3);
}

.offline-download-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Cal Sans', cursive;
}

.offline-download-btn:disabled {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-gray);
    cursor: not-allowed;
    box-shadow: none;
}

.offline-summary {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.offline-file-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.offline-upload-hint {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 8px;
}

.copy-license-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Cal Sans', cursive;
}

.copy-license-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(243, 116, 33, 0.3);
}

.meta-value-with-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-value-with-copy .meta-value {
    flex: none;
}

/* License key specific styling with Jersey 25 font */
#licenseKeyValue {
    font-family: 'Jersey 25', monospace;
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
    font-weight: normal;
}

.license-key-clickable {
    background: rgba(243, 116, 33, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    max-width: fit-content;
    margin-left: -0.5rem;
}

.license-key-clickable:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.copy-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Kantumruy Pro', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    letter-spacing: normal;
}

.copy-tooltip.show {
    opacity: 1;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--accent-orange);
}

.response-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 12px;
    color: var(--accent-cyan);
    font-family: 'Jersey 25', monospace;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 16px;
    word-break: break-all;
}

.offline-instructions {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
}

.offline-instructions p {
    margin-bottom: 8px;
    font-weight: 600;
}

.offline-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.offline-instructions li {
    margin-bottom: 4px;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
    white-space: nowrap;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

/* Mobile Responsive for Client Login */
@media (max-width: 768px) {
    .client-login {
        padding: 15px;
    }

    .client-login-container {
        width: calc(100% - 30px);
        max-width: none;
    }

    .login-form-container,
    .download-container {
        padding: 15px;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 20px;
        width: 35px;
        height: 35px;
    }

    .download-buttons {
        gap: 12px;
    }

    .download-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* License Portal Mobile */
    .license-portal {
        padding: 0 15px;
    }
    .portal-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 10px 0;
    }
    .portal-welcome {
        flex: none;
    }
    .portal-title {
        font-size: 22px;
    }
    .portal-subtitle {
        font-size: 14px;
    }
    .portal-user-info {
        justify-content: center;
    }
    .product-header {
        padding: 20px;
    }
    .product-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .product-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .product-content {
        padding: 20px;
    }
    .devices-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .devices-table-header,
    .device-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }
    .device-date {
        text-align: left !important;
        margin-top: 4px;
        font-size: 12px;
        opacity: 0.8;
    }
    .download-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .download-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .download-container {
        padding: 10px;
        max-height: 95vh;
    }
    .license-portal {
        padding: 0 10px;
    }
    .portal-header {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    .portal-title {
        font-size: 18px;
    }
    .portal-subtitle {
        font-size: 12px;
    }
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .user-name {
        font-size: 13px;
    }
    .user-email {
        font-size: 11px;
    }
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .deactivate-notice {
        font-size: 10px;
        padding: 8px 10px;
    }
}

/* Legacy Downloads Section */
.legacy-downloads {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legacy-downloads-title {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 12px 0;
    font-weight: 600;
    text-align: center;
    opacity: 0.8;
}

.legacy-download-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.legacy-download-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    font-weight: 500;
}

.legacy-download-link:hover {
    color: var(--accent-orange);
    background: rgba(243, 116, 33, 0.1);
    border-color: rgba(243, 116, 33, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .legacy-download-links {
        gap: 16px;
    }
    
    .legacy-download-link {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Release Notes Styling */
.release-notes-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.release-notes-link:hover {
    opacity: 1;
    color: #ff8833;
}

.release-notes-icon {
    width: 12px;
    height: 12px;
}

.release-notes-modal {
    max-width: 550px;
}

#releaseNotesModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 10000 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    backdrop-filter: blur(5px) !important;
}

#releaseNotesModal.show {
    display: flex !important;
}

.release-notes-content {
    padding: 0 24px 24px 24px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
}

.release-version {
    margin-bottom: 24px;
}

.release-version:last-child {
    margin-bottom: 0;
}

.release-version h4 {
    color: var(--accent-orange);
    font-size: 16px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.release-date {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 400;
    opacity: 0.7;
}

.release-changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.release-changes li {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    padding: 6px 0;
    border-left: 2px solid var(--accent-orange);
    padding-left: 12px;
    margin-bottom: 8px;
    background: rgba(243, 116, 33, 0.05);
    border-radius: 0 4px 4px 0;
}

.release-changes li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .release-notes-modal {
        max-width: 95%;
    }
    
    .release-notes-content {
        padding: 0 16px 16px 16px;
        max-height: 300px;
    }
    
    .release-version h4 {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .release-changes li {
        font-size: 13px;
        padding-left: 10px;
    }
}

/* Smooth scroll for sections */
section {
    scroll-margin-top: 80px;
}
