* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-silver) 50%, var(--primary-blue) 100%);
    z-index: 2000;
}

:root {
    --primary-blue: #1976D2;
    --primary-dark: #0D47A1;
    --accent-silver: #C0C0C0;
    --accent-light: #E8F4F8;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --bg-cream: #F0F4F8;
    --bg-dark: #0A1F2E;
    --border-blue: #64B5F6;
    --shadow-blue: rgba(13, 71, 161, 0.15);
    --blue-bright: #42A5F5;
    --blue-light: #81D4FA;
    --saffron: #1976D2;
    --saffron-light: #64B5F6;
    --saffron-deep: #0D47A1;
    --gold: #cfcfcf;
    --gold-light: #C0C0C0;
    --cream: #d8d8d8;
    --cream-dark: #d8d8d8;
    --bark: #3D2B1F;
    --bark-light: #5C4033;
    --sage: #7A8B6F;
    --sage-light: #A8B89E;
    --white: #FFFCF7;
    --text: #2C1810;
    --text-muted: #7A6B60;
    --shadow: rgba(60, 40, 20, 0.08);
    --shadow-lg: rgba(60, 40, 20, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 4px;
    z-index: 1000;
    box-shadow: 0 4px 12px var(--shadow-blue);
    animation: slideDown 0.6s ease-out;
    border-bottom: 3px solid var(--accent-silver);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: transparent;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-section h1 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.logo-section p {
    color: var(--accent-light);
    font-size: 0.75rem;
    margin: 0;
    font-style: italic;
}

nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

nav a:hover {
    border-bottom-color: var(--accent-silver);
    color: var(--accent-silver);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(25, 118, 210, 0.85) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="1200" height="600" fill="%230D47A1"/><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 100px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--blue-light);
    font-style: italic;
    letter-spacing: 1px;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(135deg, var(--accent-silver) 0%, #E8E8E8 100%);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.4), 0 0 20px rgba(25, 118, 210, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(192, 192, 192, 0.6), 0 0 30px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #E8E8E8 0%, var(--accent-silver) 100%);
    border-color: var(--blue-bright);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* SECTIONS */
section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-blue) 50%, transparent 100%);
    opacity: 0.3;
}

section:first-of-type::before {
    display: none;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--blue-bright) 50%, transparent 100%);
    border-radius: 2px;
}

section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

/* LIVE PLAYER SECTION */
#live-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #E3F2FD 100%);
}

.player-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-blue);
    margin-top: 2rem;
    animation: scaleIn 0.6s ease-out 0.3s both;
    border-top: 4px solid var(--primary-blue);
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.player-container iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 8px;
}

/* SCHEDULE SECTION */
#schedule-section {
    background: white;
}

.schedule-container {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--blue-bright);
    margin-top: 2rem;
    box-shadow: 0 4px 12px var(--shadow-blue);
}

.schedule-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
}

/* PODCASTS SECTION */
#podcasts-section {
    background: linear-gradient(135deg, #E3F2FD 0%, var(--bg-cream) 100%);
}

.podcasts-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-blue);
    margin-top: 2rem;
    border-top: 4px solid var(--primary-blue);
}

.podcasts-container iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 8px;
}

/* ABOUT/HISTORY SECTION */
#about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.about-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.history-container {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-blue);
    border-top: 4px solid var(--primary-blue);
}

.history-container iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 8px;
}

.mission-list {
    list-style: none;
    margin-top: 1rem;
}

.mission-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.mission-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--blue-bright);
    font-size: 1.5rem;
}

/* ADVERTISE SECTION */
#advertise-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--text-light);
}

#advertise-section h2,
#advertise-section h3 {
    color: var(--blue-light);
}

#advertise-section h2::after {
    background: linear-gradient(90deg, transparent 0%, var(--accent-silver) 50%, transparent 100%);
}

.advertise-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-silver);
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.advertise-container p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-silver);
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.contact-highlight a {
    color: var(--blue-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-highlight a:hover {
    color: var(--accent-silver);
}

.ad-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--accent-silver);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(192, 192, 192, 0.2);
}

.benefit-card h4 {
    color: var(--accent-silver);
    margin-bottom: 0.8rem;
}

/* FOOTER */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--blue-bright);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--blue-bright);
    opacity: 1;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-silver);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(192, 192, 192, 0.3);
    background: var(--blue-bright);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-warm);
    padding-top: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body::before {
        height: 3px;
    }

    header {
        padding: 1rem;
        top: 3px;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }

    .hero {
        padding: 60px 1.5rem;
        min-height: 400px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero .description {
        font-size: 0.95rem;
    }

    section {
        padding: 50px 1.5rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .schedule-container iframe {
        min-height: 400px;
    }

    .ad-benefits {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .logo-section {
        min-width: auto;
    }

    .logo-section h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body::before {
        height: 2px;
    }

    header {
        padding: 0.8rem;
        top: 2px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-section h1 {
        font-size: 1rem;
    }

    .logo-section p {
        font-size: 0.65rem;
    }

    nav {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.75rem;
        padding: 0.25rem 0.25rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero .tagline {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    section {
        padding: 40px 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .contact-highlight {
        font-size: 1.3rem;
    }
}

/* SMOOTH SCROLL FOR BUTTONS */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* HOVER EFFECTS */
.player-container:hover,
.schedule-container:hover,
.podcasts-container:hover,
.history-container:hover {
    box-shadow: 0 12px 32px var(--shadow-blue);
    transition: all 0.3s ease;
}


/* Force override Bootstrap primary header */
:root {
    --schedule-header: var(--primary-blue);
}

@media (prefers-color-scheme: dark) {
    :root {
        --schedule-header: var(--primary-blue);
    }
}

.card-header.text-bg-primary,
.text-bg-primary,
.bg-primary {
    background-color: #125cb7 !important;
    border-color: #1360bb !important;
    color: #fff !important;
}







/* Desktop downloads */
.desktop-download {
    margin-top: 40px;
    text-align: center;
}

.desktop-title {
    font-size: 28px;
    margin-bottom: 6px;
}

.desktop-subtitle {
    opacity: .7;
    margin-bottom: 30px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.download-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.download-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.download-header img {
    width: 28px;
}

.download-header h4 {
    font-size: 18px;
}

.download-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f6f6f6;
    color: #333;
    font-weight: 500;
    transition: .25s;
}

.download-btn span {
    font-size: 12px;
    opacity: .6;
}

.download-btn:hover {
    background: #eaeaea;
}

.download-version {
    margin-top: 25px;
    font-size: 13px;
    opacity: .6;
}

.desktop-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.desktop-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all .25s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.desktop-btn img {
    height: 26px;
}

.desktop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* OS Colors */

.desktop-btn.windows {
    background: linear-gradient(135deg, #0078D6, #0a84ff);
}

.desktop-btn.mac {
    background: linear-gradient(135deg, #333, #555);
}

.desktop-btn.linux {
    background: linear-gradient(135deg, #E95420, #ff7a2f);
}



.desktop-download {
    margin: 0;
    padding: 3rem 2.5rem 2.5rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
    border-top: 1px solid rgba(196, 94, 26, 0.08);
    position: relative;
}

.desktop-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(196, 94, 26, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 100%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* ── Header ── */
.dd-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.dd-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.85rem;
}

.dd-label-line {
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--saffron);
    opacity: 0.6;
}

.dd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.dd-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--saffron);
}

.dd-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Card Grid ── */
.dd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 2rem;
    position: relative;
}

@media (max-width: 900px) {
    .dd-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.dd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 2rem;
    position: relative;
}

/* ── Card ── */
.dd-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(60, 40, 20, 0.04),
        0 8px 24px rgba(60, 40, 20, 0.06);
    border: 1px solid rgba(196, 94, 26, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.dd-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 4px 12px rgba(60, 40, 20, 0.06),
        0 20px 48px rgba(60, 40, 20, 0.12);
}

.dd-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dd-card:hover .dd-card-accent {
    opacity: 1;
}

.dd-card-featured .dd-card-accent {
    opacity: 1;
}

.dd-card-inner {
    padding: 1.75rem 1.5rem 1.5rem;
}

/* ── OS Header ── */
.dd-os {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(196, 94, 26, 0.06);
}

.dd-os-icon {
    width: 32px;
    height: 32px;
    color: var(--bark);
    opacity: 0.75;
    flex-shrink: 0;
}

.dd-os h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bark);
    line-height: 1.2;
}

.dd-arch {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── Download Buttons ── */
.dd-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dd-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.dd-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.dd-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 94, 26, 0.3);
}

.dd-btn:hover::before {
    opacity: 1;
}

.dd-btn-alt {
    background: var(--cream);
    color: var(--bark);
}

.dd-btn-alt:hover {
    background: var(--cream-dark);
    box-shadow: 0 4px 12px rgba(60, 40, 20, 0.08);
}

.dd-btn-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    position: relative;
}

.dd-btn-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.dd-btn-alt .dd-btn-badge {
    background: rgba(196, 94, 26, 0.08);
    color: var(--saffron);
}

/* ── Footer ── */
.dd-footer {
    text-align: center;
    position: relative;
}

.dd-version {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.dd-version-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    background: rgba(196, 94, 26, 0.08);
    color: var(--saffron);
}

.dd-features-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.7;
}

.dd-features-strip .dd-dot {
    opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .desktop-download {
        padding: 2.5rem 1.25rem 2rem;
    }

    .dd-card-inner {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .dd-features-strip {
        gap: 0.35rem;
        font-size: 0.68rem;
    }

    .dd-grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .dd-btn-badge {
        display: none;
    }
}