/* 
 * Glassmorphic Cards CSS Override
 * Transparent background + glassmorphic styling for streamofdan.com integration
 */

/* ===== TRANSPARENT BACKGROUND ===== */
body {
    background: transparent !important;
}

.app,
.container,
#root {
    background: transparent !important;
}

/* ===== GLASSMORPHIC CARDS ===== */
.station-card {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.station-card:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

/* ===== TEXT CONTRAST FOR LEGIBILITY ===== */
.station-header h3 {
    color: #1a1a1a !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.station-info div {
    color: #2d2d2d !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}

.synopsis {
    color: #3d3d3d !important;
    text-shadow: none !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

/* ===== HEADER GLASSMORPHIC ===== */
.header {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.header h1 {
    color: #1a1a1a !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.subtitle,
.header h2,
.description {
    color: #2d2d2d !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}

/* ===== LOADING STATE ===== */
.loading {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #1a1a1a !important;
}

/* ===== GRID TRANSPARENCY ===== */
.stations-grid {
    background: transparent !important;
}

/* ===== FREQUENCY BADGE ===== */
.frequency {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}