/* =========================================================
   I-LOVE-DISCO
   CSS PULITO E UNIFICATO
   ========================================================= */

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

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: #fff;
    background:
        radial-gradient(circle at 50% 10%, rgba(255,0,170,.16), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(0,190,255,.10), transparent 28%),
        linear-gradient(135deg,#05000d 0%,#0b0017 48%,#03030a 100%);
    overflow-x: hidden;
}

a { color: inherit; }
button, input { font: inherit; }

/* =========================================================
   BACKGROUND
   ========================================================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -5;
    overflow: hidden;
    pointer-events: none;
}

.background-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .16;
}

.glow-pink { top:-250px; left:-160px; background:#ff00b7; }
.glow-blue { right:-180px; bottom:-260px; background:#008cff; }
.glow-purple { left:45%; top:30%; background:#7a00ff; opacity:.08; }

.background-grid {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 55px 55px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    width: 100%;
    height: 100px;
    z-index: 1000;
    background:
        linear-gradient(180deg, rgba(5,3,15,.98), rgba(5,3,15,.90));
    border-bottom: 1px solid rgba(255,35,190,.30);
    box-shadow: 0 4px 25px rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.header-logo img {
    display: block;
    width: auto;
    max-width: 360px;
    max-height: 84px;
    object-fit: contain;
}

.main-nav {
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    z-index: 20;
}

.main-nav a {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    white-space: nowrap;
    transition: color .25s ease, text-shadow .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: #ff28c2;
    box-shadow: 0 0 8px rgba(255,40,194,.8);
    transition: width .25s ease;
}

.main-nav a:hover {
    color: #ff43ca;
    text-shadow: 0 0 8px rgba(255,43,194,.65);
}

.main-nav a:hover::after { width: 100%; }

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    isolation: isolate;
    width: min(1500px,94%);
    height: 425px;
    margin: 0 auto 18px;
    padding: 22px 28px 18px;
    display: grid;
    grid-template-columns: minmax(330px,.72fr) minmax(650px,1.45fr);
    gap: 38px;
    align-items: center;
    overflow: hidden;
    border-radius: 0 0 26px 26px;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .72;
    z-index: -2;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg,
            rgba(3,0,10,.38) 0%,
            rgba(3,0,10,.20) 42%,
            rgba(3,0,10,.48) 100%);
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 5;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.on-air {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid rgba(255,50,100,.30);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.on-air-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff315f;
    box-shadow: 0 0 12px #ff315f;
    animation: onAirPulse 1.3s infinite;
}

@keyframes onAirPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.45; transform:scale(.75); }
}

.hero-title {
    margin-top: 16px;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(48px,4.2vw,72px);
    line-height: .90;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 22px rgba(255,40,200,.25);
}

.hero-title span {
    display: inline-block;
}

.hero-era {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Orbitron", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.hero-era span:first-child { color:#ff42cc; }
.hero-era span:last-child { color:#35caff; }

.hero-era i {
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg,#ff31ca,#28c9ff);
    box-shadow: 0 0 10px rgba(255,0,190,.25);
}

.hero-description {
    margin-top: 14px;
    max-width: 420px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.hero-description strong {
    display: block;
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 3px;
}

.hero-button {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid rgba(255,45,200,.45);
    border-radius: 999px;
    background: rgba(255,0,180,.10);
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px rgba(255,0,190,.10);
    transition: transform .2s ease, background .2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    background: rgba(255,0,180,.18);
}

.button-icon {
    color: #ff39c7;
    font-size: 12px;
}

/* =========================================================
   PLAYER
   ========================================================= */

.player-container {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 0;
}

.radio-player {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
    box-shadow:
        0 25px 70px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.player-top {
    height: 46px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.20);
}

.player-brand {
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.player-live {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff6bd8;
}

.player-live span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff315f;
    box-shadow: 0 0 10px #ff315f;
}

.player-main {
    min-height: 285px;
    display: grid;
    grid-template-columns: 40% 60%;
}

.vinyl-section {
    position: relative;
    min-height: 285px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,.09);
    background: radial-gradient(circle,rgba(255,0,190,.10),transparent 58%);
}

.vinyl-section::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255,0,190,.12),transparent 68%);
    filter: blur(10px);
}

.vinyl-record {
    position: relative;
    z-index: 2;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%,#181818 0 9%,transparent 9.5%),
        repeating-radial-gradient(circle,#090909 0 2px,#181818 3px 4px);
    border: 2px solid rgba(255,255,255,.10);
    box-shadow: 0 15px 40px rgba(0,0,0,.55),0 0 30px rgba(255,0,180,.12);
    animation: vinylSpin 9s linear infinite;
}

.vinyl-lines {
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow:
        inset 0 0 0 10px rgba(255,255,255,.015),
        inset 0 0 0 28px rgba(255,255,255,.012);
}

.vinyl-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle,#ff2ac5,#a80082);
    color: #fff;
    text-align: center;
    box-shadow: 0 0 20px rgba(255,0,190,.35);
}

.vinyl-center span { font-size: 11px; }
.vinyl-center strong { font-size: 11px; letter-spacing: 1px; }
.vinyl-center small { font-size: 7px; letter-spacing: 2px; }

.vinyl-hole {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: #080808;
    z-index: 4;
}

@keyframes vinylSpin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.tonearm {
    position: absolute;
    top: 66px;
    right: 18px;
    width: 90px;
    height: 150px;
    z-index: 5;
    transform-origin: top right;
}

.tonearm-base {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #777;
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.tonearm-arm {
    position: absolute;
    top: 17px;
    right: 15px;
    width: 7px;
    height: 105px;
    border-radius: 8px;
    background: linear-gradient(#aaa,#444);
    transform: rotate(6deg);
    transform-origin: top center;
}

.tonearm-head {
    position: absolute;
    top: 111px;
    right: 12px;
    width: 24px;
    height: 16px;
    border-radius: 4px;
    background: #555;
    transform: rotate(56deg);
}

.now-playing {
    min-width: 0;
    min-height: 285px;
    padding: 18px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg,rgba(255,255,255,.025),rgba(255,255,255,.01));
}

.now-playing-label {
    margin-bottom: 5px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #ff36c9;
}

.track-information,
.track-text {
    width: 100%;
    min-width: 0;
}

.track-text h2 {
    width: 100%;
    margin: 0;
    font-size: clamp(25px,2.4vw,38px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    overflow-wrap: anywhere;
}

.track-text h3 {
    width: 100%;
    margin-top: 10px;
    font-size: clamp(18px,1.65vw,26px);
    line-height: 1.30;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    white-space: normal;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.track-year {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    padding: 5px 10px;
    border: 2px solid rgba(255,255,255,.13);
    border-radius: 30px;
    background: rgba(255,255,255,.04);
    font-size: clamp(18px,1.65vw,26px);
    font-weight: 800;
    letter-spacing: 1.7px;
    color: #ff78da;
}



.equalizer {
    width: 100%;
    height: 30px;
    margin-top: 8px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    opacity: .85;
}

.equalizer span {
    flex: 1;
    max-width: 7px;
    height: 5px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top,#ff149f,#ff6bd8);
    box-shadow: 0 0 8px rgba(255,0,180,.35);
    animation: eq 1s ease-in-out infinite alternate;
}

.equalizer span:nth-child(2n) { animation-delay:.15s; }
.equalizer span:nth-child(3n) { animation-delay:.3s; }

@keyframes eq {
    from { height: 5px; }
    to { height: 26px; }
}

.stream-status {
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 8px;
    letter-spacing: 1.4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #55ff9a;
    box-shadow: 0 0 8px #55ff9a;
}

.stream-time {
    margin-left: auto;
    opacity: .55;
}

.player-controls {
    min-height: 58px;
    height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.18);
}

.control-volume {
    width: 180px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#volume { width: 105px; }

.small-control {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.small-control:hover {
    color: #ff54d1;
    border-color: rgba(255,50,200,.5);
}

.play-button {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg,#ff149f,#ff4ac7);
    box-shadow: 0 0 22px rgba(255,0,190,.55);
    transition: transform .2s ease, box-shadow .2s ease;
}

.play-button:hover {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(255,0,190,.75);
}

#volume {
    accent-color: #ff32c4;
}

/* =========================================================
   TRE RIQUADRI
   ========================================================= */

.features {
    width: min(1450px,94%);
    margin: 8px auto 18px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.feature-card {
    position: relative;
    isolation: isolate;
    height: 160px;
    min-height: 160px;
    padding: 17px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    background: rgba(255,255,255,.035);
    box-shadow: 0 15px 40px rgba(0,0,0,.28);
    transition: transform .2s ease, background .2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.055);
}

.feature-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .58;
    z-index: -2;
    pointer-events: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.feature-pink::after {
    background: linear-gradient(90deg,rgba(25,0,25,.90),rgba(25,0,25,.45));
}

.feature-blue::after {
    background: linear-gradient(90deg,rgba(2,8,25,.90),rgba(2,8,25,.38));
}

.feature-yellow::after {
    background: linear-gradient(90deg,rgba(18,10,2,.88),rgba(18,10,2,.35));
}

.feature-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 12px;
    background: rgba(0,0,0,.22);
    font-size: 21px;
    z-index: 2;
}

.feature-pink .feature-icon {
    color:#ff2bbf;
    border-color:rgba(255,43,191,.65);
    text-shadow:0 0 12px rgba(255,43,191,.65);
}

.feature-blue .feature-icon {
    color:#55cfff;
    border-color:rgba(85,207,255,.65);
    text-shadow:0 0 12px rgba(85,207,255,.65);
}

.feature-yellow .feature-icon {
    color:#ffd84a;
    border-color:rgba(255,216,74,.65);
    text-shadow:0 0 12px rgba(255,216,74,.65);
}

.feature-content {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.feature-content > span {
    display: block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.feature-pink .feature-content > span { color:#ff35ca; }
.feature-blue .feature-content > span { color:#25caff; }
.feature-yellow .feature-content > span { color:#ffd12d; }

.feature-content h2 {
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.feature-pink .feature-content h2 {
    color:#ff35ca;
    text-shadow:0 0 6px rgba(255,35,202,.8),0 0 15px rgba(255,35,202,.45);
}

.feature-blue .feature-content h2 {
    color:#25caff;
    text-shadow:0 0 6px rgba(37,202,255,.8),0 0 15px rgba(37,202,255,.45);
}

.feature-yellow .feature-content h2 {
    color:#ffd12d;
    text-shadow:0 0 6px rgba(255,209,45,.8),0 0 15px rgba(255,209,45,.45);
}

.feature-content p {
    margin-top: 5px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    line-height: 1.25;
}

.feature-button,
.feature-links {
    margin-top: 7px;
}

.feature-button,
.feature-links a {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    color: #fff;
    text-decoration: none;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.feature-links {
    display: flex;
    gap: 6px;
}

.feature-button:hover,
.feature-links a:hover {
    border-color: rgba(255,45,200,.6);
}

.feature-decoration {
    position: absolute;
    right: -5px;
    bottom: -20px;
    z-index: 2;
    font-size: 70px;
    opacity: .10;
    pointer-events: none;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
    position: relative;
    width: 100%;
    margin-top: 28px;
    padding: 10px 20px 65px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 50% 35%,rgba(255,0,190,.13),transparent 35%),
        radial-gradient(circle at 15% 70%,rgba(0,150,255,.08),transparent 30%),
        radial-gradient(circle at 85% 70%,rgba(255,190,0,.07),transparent 30%),
        rgba(5,2,12,.45);
}

.about-content {
    position: relative;
    z-index: 5;
    width: min(950px,90%);
    margin: 0 auto;
    padding: 10px 30px;
}

.about .section-label {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(255,35,200,.45);
    border-radius: 30px;
    background: rgba(255,0,180,.06);
    color:#ff37cb;
    font-size: 9px;
    letter-spacing: 5px;
}

.about h2 {
    margin: 20px 0 0;
    font-family:"Orbitron",sans-serif;
    font-size: clamp(30px,3vw,44px);
    line-height:1.25;
    font-weight:700;
    color:#fff;
}

.about h2 strong {
    display:block;
    margin-top:5px;
    color:#ff31ca;
    font-size:.68em;
    letter-spacing:2px;
    text-shadow:0 0 8px rgba(255,0,180,.35),0 0 25px rgba(255,0,180,.18);
}

.about h2::after {
    content:"";
    display:block;
    width:180px;
    height:1px;
    margin:25px auto 0;
    background:linear-gradient(90deg,transparent,#ff2ac8,#28c9ff,transparent);
}

.about p {
    width:min(600px,90%);
    margin:20px auto 0;
    color:rgba(255,255,255,.60);
    font-size:13px;
    line-height:1.6;
}

.about-years {
    width:fit-content;
    margin:28px auto 0;
    display:flex;
    align-items:center;
    gap:18px;
}

.about-years span {
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-family:"Orbitron",sans-serif;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.16);
}

.about-years span:first-child {
    border-color:rgba(255,35,200,.55);
    color:#ff42cc;
}

.about-years span:last-child {
    border-color:rgba(35,190,255,.55);
    color:#35caff;
}

.about-years i {
    display:block;
    width:70px;
    height:2px;
    background:linear-gradient(90deg,#ff31ca,#28c9ff);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width:100%;
    margin-top:0;
    padding:26px 0 18px;
}

.footer-inner {
    width:min(1450px,94%);
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-brand {
    display:flex;
    flex-direction:column;
    gap:4px;
}

.footer-name {
    font-family:"Orbitron",sans-serif;
    font-size:18px;
    font-weight:800;
    letter-spacing:2px;
}

.footer-subtitle {
    color:#ff37cb;
    font-size:8px;
    letter-spacing:2px;
}

.footer-slogan {
    text-align:center;
    color:rgba(255,255,255,.55);
    font-size:8px;
    line-height:1.6;
    letter-spacing:1px;
}

.footer-slogan strong {
    display:block;
    color:rgba(255,255,255,.72);
}

.footer-social {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
}

.footer-social a {
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    font-size:21px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.14);
    transition:.25s ease;
}

.footer-social a:hover {
    transform:translateY(-3px) scale(1.05);
    background:rgba(255,0,190,.12);
    border-color:rgba(255,45,200,.65);
}

.footer-socan {
    width:min(1450px,94%);
    min-height:105px;
    margin:0 auto;
    padding:14px 0;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    border-top:1px solid rgba(255,255,255,.06);
}

.footer-socan img {
    display:block;
    width:216px;
    height:77px;
    object-fit:contain;
    opacity:.90;
}

/* =========================================================
   DISCOBALL - ELIMINATA
   ========================================================= */

.disco-ball,
.disco-ball-inner {
    display:none !important;
    animation:none !important;
}

/* =========================================================
   RESPONSIVE DESKTOP 16:9
   ========================================================= */

@media (min-width:1201px) and (max-height:850px) {
    .site-header { height:78px; }
    .header-logo img { max-height:68px; max-width:310px; }
    .hero { height:350px; padding:16px 24px; margin-bottom:12px; }
    .hero-title { font-size:52px; }
    .hero-era { margin-top:12px; }
    .hero-description { margin-top:9px; font-size:10px; }
    .hero-description strong { font-size:12px; }
    .hero-button { margin-top:10px; padding:8px 14px; }
    .player-main { min-height:235px; }
    .vinyl-section { min-height:235px; }
    .vinyl-record { width:175px; height:175px; }
    .vinyl-section::before { width:195px; height:195px; }
    .now-playing { min-height:235px; padding:14px 22px; }
    .track-text h2 { font-size:21px; }
    .track-text h3 { font-size:14px; }
    .equalizer { height:22px; }
    .player-controls { height:50px; min-height:50px; }
    .play-button { width:44px; height:44px; }
    .features { margin-top:6px; margin-bottom:10px; }
    .feature-card { height:105px; min-height:105px; padding:13px; gap:10px; }
    .feature-icon { width:38px; height:38px; font-size:15px; }
    .feature-content > span { font-size:10px; }
    .feature-content h2 { font-size:11px; }
    .feature-content p { font-size:8px; }
    .about { margin-top:18px; padding:38px 20px 42px; }
    .about h2 { font-size:32px; }
    .about p { margin-top:12px; font-size:10px; }
    .about-years { margin-top:16px; }
    .about-years span { width:48px; height:48px; font-size:13px; }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1000px) {
    .site-header { height:82px; }
    .header-logo { left:20px; }
    .header-logo img { max-width:250px; max-height:68px; }
    .main-nav { right:25px; gap:24px; }

    .hero {
        width:calc(100% - 30px);
        height:auto;
        min-height:0;
        grid-template-columns:1fr;
        gap:20px;
        padding:25px 20px;
    }

    .hero-left { align-items:center; text-align:center; }
    .hero-description { max-width:600px; }
    .player-container { width:100%; }

    .player-main {
        grid-template-columns:40% 60%;
    }

    .features {
        width:calc(100% - 30px);
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:700px) {
    .site-header { height:74px; }

    .header-logo { left:14px; }
    .header-logo img { max-width:175px; max-height:56px; }

    .main-nav {
        right:14px;
        gap:13px;
    }

    .main-nav a {
        font-size:9px;
        letter-spacing:.6px;
    }

    .hero {
        width:calc(100% - 20px);
        padding:22px 14px;
        border-radius:0 0 20px 20px;
    }

    .hero-title {
        font-size:38px;
        letter-spacing:2px;
    }

    .hero-description strong { font-size:12px; }

    .radio-player { border-radius:20px; }

    .player-main {
        grid-template-columns:1fr;
        min-height:0;
    }

    .vinyl-section {
        min-height:205px;
        height:205px;
    }

    .vinyl-record {
        width:165px;
        height:165px;
    }

    .vinyl-section::before {
        width:185px;
        height:185px;
    }

    .now-playing {
        min-height:245px;
        padding:18px 22px;
        text-align:center;
    }

    .track-text h2 { font-size:25px; }
    .track-text h3 { font-size:18px; }

    .track-year { margin-left:auto; margin-right:auto; }

    .equalizer { justify-content:center; }

    .stream-status { text-align:left; }

    .player-controls {
        height:58px;
        min-height:58px;
        padding:0 12px;
        gap:8px;
    }

    .control-volume { width:110px; }
    #volume { width:65px; }

    .features {
        width:calc(100% - 20px);
        grid-template-columns:1fr;
        gap:12px;
    }

    .feature-card {
        height:145px;
        min-height:145px;
    }

    .about {
        padding:45px 12px 50px;
    }

    .about-content { width:100%; padding:10px; }
    .about h2 { font-size:26px; }
    .about p { font-size:12px; }

    .footer-inner {
        flex-direction:column;
        text-align:center;
    }

    .footer-social { justify-content:center; }

    .footer-socan {
        justify-content:center;
    }
}

/* =========================================================
   PICCOLI TELEFONI
   ========================================================= */

@media (max-width:480px) {
    .header-logo img { max-width:145px; max-height:50px; }

    .main-nav { gap:10px; }
    .main-nav a { font-size:8px; }
    .main-nav a:nth-child(2) { display:none; }

    .hero-title { font-size:32px; }
    .hero-era { font-size:14px; }

    .player-controls {
        flex-wrap:wrap;
        justify-content:center;
        height:auto;
        min-height:72px;
        padding:10px;
    }

    .control-volume {
        order:5;
        width:100%;
        justify-content:center;
    }

    #volume { width:110px; }

    .footer-socan img {
        width:190px;
        height:auto;
    }
}

/* =========================================================
   HERO: SOLO PLAYER
========================================================= */

.hero {
    display: block !important;
    width: min(1500px, 94%);
    margin: 18px auto 28px;
    padding: 0 !important;
}


/* Nascondiamo definitivamente la vecchia colonna sinistra */

.hero-left {
    display: none !important;
}


/* Player a tutta larghezza */

.hero .player-container {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
}


/* Il player vero riempie il contenitore */

.hero .radio-player {
    width: 100% !important;
    max-width: none !important;
}
/* =========================================================
   COPERTINA NOW PLAYING
========================================================= */

.track-information {
    width: 100% !important;
    min-width: 0;

    display: flex !important;
    align-items: center;

    justify-content: space-between;

    gap: 24px;
}


.track-text {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none !important;
}


.track-cover {
    display: flex !important;

    flex: 0 0 190px;

    width: 190px;
    height: 190px;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(0,0,0,.30);

    box-shadow:
        0 10px 35px rgba(0,0,0,.45);

    order: 2;
}


.track-cover img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================================================
   TITOLO PIÙ LARGO
========================================================= */

.track-text h2,
.track-text h3 {
    width: 100% !important;

    max-width: none !important;

    overflow-wrap: anywhere;

    white-space: normal !important;
}
/* =========================================================
   GIRADISCHI - TESTINA A SINISTRA
========================================================= */

.tonearm {
    right: auto !important;
    left: 64% !important;

    transform-origin: top center !important;
    transform: scaleX(-1) scale(.82) !important;

    z-index: 5;
}