/* =============================================
   AURA RADYO - Premium Design System
   Converted from React/Tailwind to Pure CSS
   ============================================= */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Core Palette */
    --gold: #b59a6a;
    --gold-light: #c9b388;
    --gold-rgb: 181, 154, 106;
    --porcelain: #f5f2ed;
    --charcoal: #1d1d20;
    --surface: #ffffff;
    --border-light: #ebedf0;

    /* Semantic */
    --background: var(--porcelain);
    --foreground: var(--charcoal);
    --muted: #87878c;
    --destructive: #dc2626;

    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.05), 0 10px 20px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 0 20px rgba(181, 154, 106, 0.3);

    /* Gold Gradient */
    --gold-gradient: linear-gradient(135deg, #b59a6a 0%, #c9b388 50%, #b59a6a 100%);

    /* Radius */
    --radius: 0.75rem;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--gold);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
    z-index: -1;
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

@media (min-width: 768px) {

    .cursor-dot,
    .cursor-outline {
        display: block;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(181, 154, 106, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover {
    width: 60px !important;
    height: 60px !important;
    background-color: rgba(181, 154, 106, 0.1);
    border-color: transparent;
}

/* ===== GLASSMORPHISM ===== */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.glass-nav {
    background: rgba(245, 242, 237, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.glass-nav.shrink {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    padding: 1.25rem 1.5rem;
    transition: all 0.4s ease;
}

@media (min-width: 1024px) {
    .navbar {
        padding: 1.25rem 3rem;
    }
}

.navbar-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand svg {
    color: var(--gold);
    width: 1.75rem;
    height: 1.75rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover svg {
    animation: pulse 1s ease infinite;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-live {
    background: var(--gold-gradient);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    display: inline-block;
}

.btn-live:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--foreground);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-overlay a {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    transition: color 0.3s ease;
}

.mobile-overlay a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 2.5rem;
}

.hero-content {
    max-width: 64rem;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--destructive);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.live-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--destructive);
    text-transform: uppercase;
}

/* Slogan */
.slogan {
    text-align: center;
    margin-bottom: 3rem;
}

.slogan h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .slogan h1 {
        font-size: 4.5rem;
    }
}

.slogan h1 .italic {
    font-style: italic;
    color: var(--gold);
}

.slogan p {
    margin-top: 1rem;
    color: var(--muted);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Player Card */
.player-card {
    width: 100%;
    max-width: 56rem;
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

@media (min-width: 768px) {
    .player-card {
        padding: 2.5rem;
    }
}

.player-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    pointer-events: none;
}

.player-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .player-inner {
        flex-direction: row;
        gap: 3rem;
    }
}

/* Album Art */
.album-art-container {
    position: relative;
    width: 12rem;
    height: 12rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .album-art-container {
        width: 16rem;
        height: 16rem;
    }
}

.album-art-glow {
    position: absolute;
    inset: 0;
    background: rgba(181, 154, 106, 0.2);
    border-radius: 1rem;
    filter: blur(20px);
    transform: translateY(1rem);
}

.album-art-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50% !important;
    /* Plak gibi yuvarlak */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.1);
    /* Dış çerçeve */
    background: #000;
}

.album-art-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.album-art-wrapper:hover img {
    transform: scale(1.05);
}

.album-art-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.5;
}

/* Plak orta deliği efekti */
.album-art-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--charcoal);
    border-radius: 50%;
    border: 2px solid var(--gold);
    z-index: 5;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

/* History Section */
.player-history {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.history-title {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease backwards;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.history-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
}

.history-info {
    flex: 1;
}

.history-song {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.history-artist {
    font-size: 0.8rem;
    color: var(--muted);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Controls */
.player-controls {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-playing-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.now-playing-label span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.now-playing-label span:first-child svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Equalizer */
.eq-container {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 1.25rem;
    width: 2rem;
}

.eq-bar {
    width: 3px;
    background-color: var(--gold);
    border-radius: 3px;
    transform-origin: bottom;
    height: 4px;
    transition: height 0.1s ease;
}

.eq-container.playing .eq-bar:nth-child(1) {
    animation: eq 1.2s infinite ease-in-out alternate;
}

.eq-container.playing .eq-bar:nth-child(2) {
    animation: eq 0.8s infinite ease-in-out alternate -0.2s;
}

.eq-container.playing .eq-bar:nth-child(3) {
    animation: eq 1.5s infinite ease-in-out alternate -0.4s;
}

.eq-container.playing .eq-bar:nth-child(4) {
    animation: eq 0.9s infinite ease-in-out alternate -0.1s;
}

/* Track Info */
.track-info {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.track-info h2 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .track-info h2 {
        font-size: 2.25rem;
    }
}

.track-info p {
    font-size: 1.125rem;
    color: var(--muted);
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Playback Buttons */
.playback-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-skip {
    color: var(--foreground);
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn-skip:hover {
    color: var(--gold);
}

.btn-skip svg {
    width: 1.5rem;
    height: 1.5rem;
}

.btn-play {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(181, 154, 106, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-play:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.btn-play svg {
    width: 1.5rem;
    height: 1.5rem;
}

.volume-control {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    width: 8rem;
}

@media (min-width: 768px) {
    .volume-control {
        display: flex;
    }
}

.volume-control svg {
    width: 1rem;
    height: 1rem;
    color: var(--muted);
    transition: color 0.3s ease;
}

.volume-control:hover svg {
    color: var(--foreground);
}

/* Recent Tracks & Actions */
.player-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recent-tracks p.label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.recent-tracks ul {
    list-style: none;
    font-size: 0.75rem;
    color: rgba(135, 135, 140, 0.8);
    height: 3rem;
    overflow-y: auto;
    font-weight: 300;
}

.recent-tracks ul::-webkit-scrollbar {
    display: none;
}

.recent-tracks ul {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.recent-tracks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.recent-tracks li svg {
    width: 0.625rem;
    height: 0.625rem;
}

.player-actions {
    display: flex;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--muted);
}

.player-actions button {
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
}

.player-actions button:hover {
    color: var(--gold);
}

.player-actions button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--gold);
}

.scroll-indicator span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 1rem;
    height: 1rem;
    animation: bounce 1s infinite;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 1.5rem;
    position: relative;
}

@media (min-width: 1024px) {
    .about {
        padding: 6rem 3rem;
    }
}

.about-inner {
    max-width: 72rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-label {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-text h2 {
        font-size: 3rem;
    }
}

.about-text p {
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-features h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.about-features p {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* About Image */
.about-image-container {
    position: relative;
    height: 500px;
    width: 100%;
}

.about-image-glow {
    position: absolute;
    inset: 0;
    background: rgba(181, 154, 106, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    transform: translate(-2.5rem, 2.5rem);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: var(--shadow-premium);
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

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

.about-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-badge svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.about-badge p:first-of-type {
    font-family: var(--font-serif);
    font-size: 1.125rem;
}

.about-badge p:last-of-type {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ===== KÜNYE SECTION ===== */
.kunye {
    padding: 6rem 1.5rem;
    background-color: var(--surface);
}

@media (min-width: 1024px) {
    .kunye {
        padding: 6rem 3rem;
    }
}

.kunye-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.kunye-panel {
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(245, 242, 237, 0.3);
}

@media (min-width: 768px) {
    .kunye-panel {
        padding: 3rem;
    }
}

.kunye-list {
    list-style: none;
}

.kunye-list>div {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .kunye-list>div {
        flex-direction: row;
        gap: 2rem;
    }
}

.kunye-list>div:last-child {
    border-bottom: none;
}

.kunye-list>div:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.kunye-list .kunye-label {
    width: 12rem;
    color: var(--muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kunye-list .kunye-value {
    font-weight: 500;
    flex: 1;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact {
        padding: 6rem 3rem;
    }
}

.contact-bg-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 33%;
    height: 100%;
    background: var(--surface);
    transform: skewX(-10deg);
    transform-origin: top;
    z-index: -1;
    opacity: 0.5;
}

.contact-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-info h2 {
        font-size: 3rem;
    }
}

.contact-info>p {
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 28rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-item-icon {
    background: var(--gold);
    color: #fff;
}

.contact-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-item .item-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.contact-item .item-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-item .item-value:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form-card {
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-premium);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    outline: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    color: var(--foreground);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--charcoal);
    color: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background: var(--gold);
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-premium);
    z-index: 51;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid #22c55e;
    transition: all 0.5s ease;
    transform: translateY(6rem);
    opacity: 0;
    pointer-events: none;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.toast h4 {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.toast p {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ===== FOOTER REDESIGN ===== */
.site-footer {
    background: var(--surface);
    padding: 6rem 1.5rem 3rem;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.footer-info .footer-brand {
    margin-bottom: 1.5rem;
}

.footer-info .footer-brand span {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--muted);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

.footer-legal .italic {
    font-style: italic;
    color: var(--gold);
}

/* ===== ANIMATIONS ===== */

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Live Pulse */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }

    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Shine Effect */
.shine-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--charcoal) 20%, var(--gold) 40%, var(--gold) 60%, var(--charcoal) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-once 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shine-once {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Equalizer */
@keyframes eq {
    0% {
        height: 4px;
    }

    100% {
        height: 20px;
    }
}

/* Record Spin */
@keyframes record-spin {
    100% {
        transform: rotate(360deg);
    }
}

.spin {
    animation: record-spin 10s linear infinite;
}

/* Bounce */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Pulse */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===== CUSTOM RANGE SLIDER ===== */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 0 10px rgba(181, 154, 106, 0.5);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: rgba(29, 29, 32, 0.1);
    border-radius: 2px;
}

input[type=range]::-moz-range-thumb {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: rgba(29, 29, 32, 0.1);
    border-radius: 2px;
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--muted);
}

.mb-0 {
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .hero {
        padding-top: 6rem;
    }

    .player-card {
        border-radius: 16px;
    }

    .about-badge {
        position: static;
        margin-top: 1.5rem;
        display: inline-block;
    }

    .about-image-container {
        height: 350px;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}