/* ----------------------------------------------------
   CHRISTIAN CULTURE - CUSTOM STYLING SYSTEM
   DESIGN SYSTEM: PREMIUM BLACK & GOLD AESTHETIC
---------------------------------------------------- */

:root {
    /* Color Palette */
    --bg-deep-black: #0a0a0a;
    --bg-dark-gradient: linear-gradient(180deg, #141414 0%, #050505 100%);
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --text-pure-white: #ffffff;
    --text-muted-gold: #b3995d;
    --border-gold-low: rgba(212, 175, 55, 0.15);
    --border-gold-high: rgba(212, 175, 55, 0.5);
    
    /* Station Accent Colors */
    --color-poland-1: #FF2D55;
    --color-poland-2: #00F0FF;
    --color-global-1: #4D9FFF;
    --color-global-2: #C026FF;
    --color-biblia-1: #FFB300;
    --color-biblia-2: #9F4DFF;
    --color-global-biblia-1: #D4AF37;
    --color-global-biblia-2: #FFDF7A;
    
    /* Current Player Accent (dynamic) */
    --player-accent: var(--gold-primary);
    
    /* Typography */
    --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Inter', -apple-system, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* 1. Global Reset & Scrollbars */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep-black);
    color: var(--text-pure-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    background: var(--bg-dark-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep-black);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* 2. SECTION A: HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    height: 70px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- Header Live Broadcast Schedule Widget (Desktop Only - Subtle Single Line) --- */
.header-live-schedule {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 5px 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 0.78rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: none;
    white-space: nowrap;
}

@media (max-width: 1120px) {
    .header-live-schedule {
        display: none !important;
    }
}

.live-dot-pulse {
    width: 7px;
    height: 7px;
    background: #ff2a55;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff2a55;
    animation: liveDotPulse 1.4s infinite alternate;
    flex-shrink: 0;
}

@keyframes liveDotPulse {
    0% { opacity: 0.4; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.2); }
}

.live-label {
    font-weight: 800;
    font-size: 0.68rem;
    color: #ff2a55;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.live-title-link {
    font-weight: 600;
    font-size: 0.78rem;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, text-shadow 0.2s;
}

.live-title-link:hover {
    color: var(--gold-primary, #d4af37);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.header-schedule-sep {
    color: rgba(212, 175, 55, 0.45);
    font-size: 0.75rem;
    margin: 0 2px;
}

.next-label {
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    flex-shrink: 0;
}

.next-label span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.next-title {
    font-weight: 500;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

/* Hamburger Menu button */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-pure-white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger-menu:hover .bar {
    background-color: var(--gold-primary);
}

/* Brand Logo (Text-based in serif) */
.brand-logo .logo-link {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
    font-family: var(--font-serif);
    letter-spacing: 0.08em;
}

.brand-logo .logo-top {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-pure-white);
}

.brand-logo .logo-bottom {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* SMS button in right corner */
.sms-button {
    background: transparent;
    border: none;
}

.avatar-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
}

.sms-button:hover .avatar-ring {
    background: rgba(212, 175, 55, 0.25) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6) !important;
}

.sms-button:hover .avatar-ring i {
    color: var(--gold-primary) !important;
    transform: rotate(90deg) scale(1.18);
}

.sms-button.open:hover .avatar-ring i,
.sms-button.open:hover #actionsToggleIcon {
    transform: rotate(225deg) scale(1.18);
}

.dzj-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}


.dzj-logo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--gold-primary);
    padding: 0;
    background: #000;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dzj-nav-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dzj-logo-btn:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}


/* 3. SIDE DRAWER NAVIGATION */
.side-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    border-right: 1px solid var(--border-gold-low);
    z-index: 99999;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

.side-drawer.active {
    left: 0;
}

.drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-muted-gold);
    transition: var(--transition-fast);
}

.drawer-close:hover {
    color: var(--text-pure-white);
    transform: rotate(90deg);
}

.drawer-brand {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-pure-white);
    letter-spacing: 0.1em;
    margin-bottom: 3.5rem;
    margin-top: 1.5rem;
    border-bottom: 1.5px solid var(--gold-primary);
    padding-bottom: 0.75rem;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted-gold);
    transition: var(--transition-fast);
    padding: 0.5rem 0;
}

.drawer-link i {
    width: 20px;
    text-align: center;
    font-size: 1.15rem;
}

.drawer-link:hover, .drawer-link.active {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.drawer-sub {
    color: var(--text-muted-gold);
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

/* 4. SECTION B: HERO BANNER */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Mandala Background Layer */
.mandala-bg-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vh;
    height: 85vh;
    max-width: 800px;
    max-height: 800px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

.mandala-svg {
    width: 100%;
    height: 100%;
    animation: rotateMandala 120s linear infinite;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column: Portrait */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-character-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8));
    /* Softly blends the bottom edge of the image into the background */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Right Column: Branding Text */
.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-pure-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    margin-bottom: 2rem;
}

.gold-divider.centered {
    margin: 0.75rem auto 2rem auto;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    width: 120px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-gold {
    background: var(--gold-primary);
    color: var(--bg-deep-black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.03);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-deep-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.btn-block {
    width: 100%;
}

/* 5. SECTION D: NASZE APLIKACJE (SHOWCASE) */
.apps-section {
    padding: 100px 2rem 140px 2rem;
    background: rgba(8, 8, 8, 0.75);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-gold-low);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-pure-white);
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* App Card styling - Glassmorphism */
.app-card {
    position: relative;
    border-radius: 12px;
    background: rgba(25, 25, 25, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.12);
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

/* Hover glow layer underneath cards */
.app-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 60%);
    opacity: 0.4;
    transition: var(--transition-smooth);
    z-index: -1;
}

.app-card-glow.blue-purple {
    background: radial-gradient(circle at 50% 10%, rgba(77, 159, 255, 0.15) 0%, rgba(192, 38, 255, 0.02) 65%);
}

.app-card-glow.gold-purple {
    background: radial-gradient(circle at 50% 10%, rgba(255, 179, 0, 0.15) 0%, rgba(159, 77, 255, 0.02) 65%);
}

.app-card-content {
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
}

.app-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    border: 1.5px solid var(--gold-primary);
    overflow: hidden;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
}

.app-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-pure-white);
    margin-bottom: 0.25rem;
}

.app-tagline {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.app-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.app-download-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Download Badge styles */
.download-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-gold-low);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    color: var(--text-pure-white);
    transition: var(--transition-fast);
    text-align: left;
}

.download-badge i {
    font-size: 1.5rem;
    color: var(--text-pure-white);
    transition: var(--transition-fast);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.badge-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 500;
}

.badge-main {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Download badge hovers */
.download-badge:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.download-badge:hover i {
    color: var(--gold-primary);
    transform: scale(1.1);
}

/* Disabled badge for iOS/coming soon */
.download-badge.disabled-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.download-badge.disabled-link:hover {
    border-color: var(--border-gold-low);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: none;
}

.download-badge.disabled-link:hover i {
    color: var(--text-pure-white);
    transform: none;
}

/* Card Hovers */
.app-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-high);
    background: rgba(30, 30, 30, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.1);
}

.app-card:hover .app-icon-wrapper {
    transform: scale(1.05);
    border-color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.app-card:hover .app-card-glow {
    opacity: 0.85;
}

/* 6. SECTION C: RADIO PLAYER BAR (BOTTOM BAR) */
.radio-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #000000;
    border-top: 1.5px solid var(--border-gold-low);
    z-index: 999;
    display: flex;
    align-items: center;
    /* Soft gold lighting glow upward */
    box-shadow: 0 -10px 40px rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
}

.player-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 320px 1fr 340px;
    align-items: center;
    gap: 1.5rem;
}

/* Left: Station info */
.player-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: visible;
}

.station-thumbnail-container {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    border: 1px solid var(--gold-primary);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: #111111;
    transition: var(--transition-smooth);
}

.station-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.station-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: visible;
}

/* Station selector dropdown styling */
.station-selection-dropdown {
    position: relative;
    align-self: flex-start;
}

.station-select-btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.station-select-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.station-select-btn.active i {
    transform: rotate(180deg);
}

.station-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border-gold-low);
    border-radius: 6px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    z-index: 1010;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.15);
}

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

.dropdown-item {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted-gold);
    padding: 0.6rem 0.75rem;
    border-radius: 4px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover, .dropdown-item.active {
    color: var(--text-pure-white);
    background: rgba(212, 175, 55, 0.08);
}

.dropdown-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pl-accent { background-color: var(--color-poland-1); }
.global-accent { background-color: var(--color-global-1); }
.biblia-accent { background-color: var(--color-biblia-1); }
.global-biblia-accent { background-color: var(--color-global-biblia-1); }

/* Horizontal scrolling track title */
.track-scroller-container {
    width: 240px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.track-title {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-pure-white);
    font-weight: 500;
    animation: scrollText 15s linear infinite;
    padding-left: 100%;
}

@keyframes scrollText {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Center: Visualizer */
.player-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    min-width: 0;          /* pozwala na kurczenie się w gridzie */
    padding: 0 1rem;
    overflow: hidden;      /* canvas nie wychodzi poza kolumnę */
}

.visualizer-canvas {
    width: 100%;
    height: 45px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}

/* Right: Player Controls */
.player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.player-status {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--border-gold-low);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    white-space: nowrap;   /* napis nie łamie linii */
    flex-shrink: 0;        /* nie kurczy się kosztem sąsiadów */
}

/* Circular Play Button */
.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: transparent;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.08);
    color: var(--bg-deep-black);
    background: var(--gold-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    border-color: var(--gold-primary);
}

.play-btn i {
    margin-left: 3px; /* visual alignment of triangle */
    transition: var(--transition-fast);
}

.play-btn.playing i {
    margin-left: 0;
}

/* Volume controls */
.volume-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volume-btn {
    color: var(--text-muted-gold);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.volume-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--gold-light);
    box-shadow: 0 0 8px var(--gold-primary);
}

/* 7. LOGIN MODAL SYSTEM */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

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

.modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--border-gold-low);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.05);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.25rem;
    color: var(--text-muted-gold);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-pure-white);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.modal-user-icon {
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.modal-header h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    color: var(--text-pure-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.input-wrapper input:focus {
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.input-wrapper input:focus + i {
    color: var(--gold-primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.remember-me {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input {
    accent-color: var(--gold-primary);
}

.forgot-pass-link {
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.forgot-pass-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* SMS Modal Styling */
.modal-sms-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.sms-instructions-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.03);
}

.sms-instruction-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
}

.sms-keyword-badge {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px dashed var(--gold-primary);
    padding: 0.5rem 2rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.sms-number-badge {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-pure-white);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.sms-info-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.sms-disclaimer {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.sms-disclaimer i {
    color: var(--gold-primary);
    margin-right: 0.25rem;
}

/* 8. RESPONSIVENESS & ADAPTATION MOBILE (RWD) */
@media (max-width: 1200px) {
    .player-container {
        grid-template-columns: 280px 1fr 240px;
        gap: 1rem;
    }
    
    .track-scroller-container {
        width: 190px;
    }
}

@media (max-width: 1023px) {
    /* Hero changes to single column reverse */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 2rem;
    }
    
    .hero-image-col {
        order: 2;
    }
    
    .hero-text-col {
        order: 1;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 6vw, 4rem);
        text-align: center;
    }
    
    .gold-divider {
        margin: 0.5rem auto 1.5rem auto;
        background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
        width: 100px;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-character-img {
        max-width: 380px;
    }
    
    /* App Showcase Grid to 2 columns */
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Player bottom bar changes */
    .radio-player-bar {
        height: 110px;
    }
    
    .player-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .player-left {
        grid-column: 1 / 3;
        justify-content: center;
    }
    
    .track-scroller-container {
        width: 350px;
    }
    
    .player-center {
        display: none; /* Hide visualizer on tablet to save space */
    }
    
    .player-right {
        grid-column: 1 / 3;
        justify-content: center;
        width: 100%;
        margin-top: 0.25rem;
    }
}

@media (max-width: 767px) {
    /* App Showcase Grid to single column */
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid > .app-card:last-child {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Mobile Player layout - Compact & Unclipped */
    .radio-player-bar {
        height: 115px;
        padding: 0.4rem 0;
    }
    
    .player-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0.3rem;
        padding: 0 1.25rem;
        width: 100%;
    }
    
    .player-left {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem;
        overflow: visible;
    }
    
    .station-thumbnail-container {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }
    
    .track-scroller-container {
        flex-grow: 1;
        width: 100%;
        max-width: 230px;
    }
    
    .player-right {
        grid-column: 1;
        grid-row: 2;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        border-top: 1px solid rgba(212, 175, 55, 0.08);
        padding-top: 0.35rem;
        padding-bottom: 8px;
    }
    
    .player-status {
        font-size: 0.58rem;
        padding: 0.15rem 0.3rem;
        border-radius: 3px;
        flex-shrink: 0;
    }
    
    .play-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.9rem !important;
        border-width: 1.5px !important;
        flex-shrink: 0;
        margin: 0 !important;
    }

    .volume-container {
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        flex: 1 1 auto !important;
        max-width: 140px !important;
        min-width: 70px !important;
        margin: 0 0.3rem !important;
    }
    
    .volume-btn {
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .volume-slider {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
    }

    #helplineFloat {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
        margin: 0 !important;
    }

    #helplineFloat .hf-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
}

/* 9. SECTION E: SOCIAL CHANNELS SECTION */
.social-channels-section {
    padding: 100px 2rem;
    background: rgba(5, 5, 5, 0.9);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-gold-low);
}

/* Featured YouTube Channels Styling */
.featured-channels-header {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.sub-section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-pure-white);
    letter-spacing: 0.05em;
}

.gold-divider-sub {
    margin: 0.5rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    width: 80px;
    height: 1.5px;
}

.featured-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 5rem auto;
}

.featured-channel-card {
    position: relative;
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.channel-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 65%);
    opacity: 0.4;
    transition: var(--transition-smooth);
    z-index: -1;
}

.men-card .channel-card-glow {
    background: radial-gradient(circle at 50% 10%, rgba(255, 45, 85, 0.15) 0%, rgba(255, 45, 85, 0) 65%);
}

.women-card .channel-card-glow {
    background: radial-gradient(circle at 50% 10%, rgba(255, 120, 150, 0.15) 0%, rgba(255, 120, 150, 0) 65%);
}

.personality-card .channel-card-glow {
    background: radial-gradient(circle at 50% 10%, rgba(159, 77, 255, 0.15) 0%, rgba(159, 77, 255, 0) 65%);
}

.channel-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.men-card .channel-icon-circle {
    border-color: #FF2D55;
    color: #FF2D55;
}

.women-card .channel-icon-circle {
    border-color: #FF7896;
    color: #FF7896;
}

.personality-card .channel-icon-circle {
    border-color: #9F4DFF;
    color: #9F4DFF;
}

.featured-channel-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-pure-white);
}

.channel-handle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted-gold);
    margin-bottom: 1.25rem;
    display: block;
}

.channel-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-channel-men {
    background: rgba(255, 45, 85, 0.1);
    color: #FF2D55;
    border: 1px solid #FF2D55;
}

.btn-channel-men:hover {
    background: #FF2D55;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 45, 85, 0.4);
    transform: translateY(-2px);
}

.btn-channel-women {
    background: rgba(255, 120, 150, 0.1);
    color: #FF7896;
    border: 1px solid #FF7896;
}

.btn-channel-women:hover {
    background: #FF7896;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 120, 150, 0.4);
    transform: translateY(-2px);
}

.btn-channel-personality {
    background: rgba(159, 77, 255, 0.1);
    color: #9F4DFF;
    border: 1px solid #9F4DFF;
}

.btn-channel-personality:hover {
    background: #9F4DFF;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(159, 77, 255, 0.4);
    transform: translateY(-2px);
}

.featured-channel-card:hover {
    transform: translateY(-8px);
    background: rgba(28, 28, 28, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.men-card:hover { border-color: rgba(255, 45, 85, 0.4); }
.women-card:hover { border-color: rgba(255, 120, 150, 0.4); }
.personality-card:hover { border-color: rgba(159, 77, 255, 0.4); }

.featured-channel-card:hover .channel-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.featured-channel-card:hover .channel-card-glow {
    opacity: 0.85;
}

@media (max-width: 1023px) {
    .featured-channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .featured-channels-grid > .featured-channel-card:last-child {
        grid-column: span 2;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .featured-channels-grid {
        grid-template-columns: 1fr;
    }
    .featured-channels-grid > .featured-channel-card:last-child {
        grid-column: span 1;
    }
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.linktree-card .social-card-icon {
    color: rgba(67, 230, 96, 0.6);
    filter: drop-shadow(0 0 10px rgba(67, 230, 96, 0.15));
}

.btn-linktree {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-linktree:hover {
    background: #20ba59;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.linktree-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(37, 211, 102, 0.15);
}

.linktree-card:hover .social-card-icon {
    color: #25d366;
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.5));
    transform: scale(1.08);
}

.social-card {
    position: relative;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.social-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.spotify-card .social-card-icon {
    color: rgba(29, 185, 84, 0.6);
    filter: drop-shadow(0 0 10px rgba(29, 185, 84, 0.15));
}

.youtube-card .social-card-icon {
    color: rgba(255, 0, 0, 0.6);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.15));
}

.social-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.social-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Specific buttons for Spotify and YouTube */
.btn-spotify {
    background: #1DB954;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.2);
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.45);
}

.btn-youtube {
    background: #FF0000;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}

.btn-youtube:hover {
    background: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* Hover Cards */
.social-card:hover {
    transform: translateY(-6px);
    background: rgba(25, 25, 25, 0.7);
    border-color: rgba(212, 175, 55, 0.25);
}

.spotify-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(29, 185, 84, 0.1);
}

.spotify-card:hover .social-card-icon {
    color: #1DB954;
    filter: drop-shadow(0 0 15px rgba(29, 185, 84, 0.5));
    transform: scale(1.08);
}

.youtube-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 0, 0, 0.1);
}

.youtube-card:hover .social-card-icon {
    color: #FF0000;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
    transform: scale(1.08);
}

/* RWD for social grid */
@media (max-width: 767px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .social-card {
        padding: 2.5rem 1.5rem;
    }
    .youtube-channels-list {
        grid-template-columns: 1fr;
    }
}

.youtube-channels-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.yt-channel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 6px;
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    transition: var(--transition-fast);
}

.yt-channel-item:hover {
    background: #FF0000;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.45);
    border-color: #FF0000;
    transform: translateY(-2px);
}

.youtube-card:hover .yt-channel-item {
    border-color: rgba(255, 0, 0, 0.3);
}

/* 10. SECTION F: SUPPORT & STORE */
.support-store-section {
    padding: 100px 2rem;
    background: rgba(10, 10, 10, 0.7);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-gold-low);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    position: relative;
    border-radius: 12px;
    background: rgba(22, 22, 22, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.support-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 60%);
    opacity: 0.3;
    transition: var(--transition-smooth);
    z-index: -1;
}

.support-card:hover .support-card-glow {
    opacity: 0.8;
}

.support-card-icon {
    font-size: 2.75rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    transition: var(--transition-smooth);
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-high);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.05);
}

.support-card:hover .support-card-icon {
    transform: scale(1.1);
    color: var(--gold-light);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.support-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-pure-white);
    margin-bottom: 1rem;
}

.support-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* 11. SECTION G: CONTACT SECTION */
.contact-section {
    padding: 100px 2rem 140px 2rem;
    background: rgba(8, 8, 8, 0.9);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-gold-low);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.contact-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 60%);
    opacity: 0.3;
    transition: var(--transition-smooth);
    z-index: -1;
}

.contact-card-icon {
    font-size: 2.75rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    transition: var(--transition-smooth);
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-pure-white);
    margin-bottom: 1rem;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    word-break: break-all;
    transition: var(--transition-fast);
}

.contact-card-value a {
    transition: var(--transition-fast);
}

.contact-card-value a:hover {
    color: var(--text-pure-white);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.contact-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-high);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.05);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    color: var(--gold-light);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.contact-card:hover .contact-card-glow {
    opacity: 0.8;
}

.contact-footer {
    text-align: center;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* 12. FLOATING BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 108px; /* niżej — nie dotyka panelu reklamowego */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.85);
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 998; /* just below the player bar z-index of 999 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-primary);
    color: var(--bg-deep-black);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* Adjust for mobile to fit above the modified mobile player bar */
@media (max-width: 767px) {
    .back-to-top {
        right: 1.25rem;
        bottom: 125px; /* mobile player is 105px high */
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 1023px) {
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        gap: 2rem;
        margin: 0 auto;
    }
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .support-grid > .support-card:last-child {
        grid-column: span 2;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .support-grid > .support-card:last-child {
        grid-column: span 1;
    }
}

.app-icon-link {
    display: block;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* =========================================================================
   ZAKŁADKA DOBRZE, ŻE JESTEŚ (MODAL)
   ========================================================================= */
.dzj-modal-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 6500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.dzj-modal-wrapper.open {
    opacity: 1;
    pointer-events: auto;
}
.dzj-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
.dzj-modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    background-color: #18181b; /* zinc-900 */
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2.5rem;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dzj-modal-wrapper.open .dzj-modal-content {
    transform: scale(1);
}
.dzj-close-top {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}
.dzj-close-top:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-primary);
}
.dzj-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, #000000, rgba(24, 24, 27, 0.9));
    text-align: center;
}
.dzj-logo-wrapper {
    width: 90px; height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    padding: 5px;
    display: flex; align-items: center; justify-content: center;
}
.dzj-logo-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.dzj-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-primary);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.dzj-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}
.dzj-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 2.5rem;
    background: #18181b;
}
.dzj-body::-webkit-scrollbar { width: 4px; }
.dzj-body::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }
.dzj-text-content {
    color: #d4d4d8; /* zinc-300 */
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}
.dzj-text-content strong {
    color: #fff;
    font-weight: 500;
}
.dzj-youtube-section {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dzj-youtube-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.dzj-youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}
.dzj-youtube-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.dzj-sms-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
}
.dzj-sms-title {
    color: var(--gold-primary);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    margin: 0 0 8px 0;
}
.dzj-sms-text {
    color: #d4d4d8; font-size: 14px; margin: 0; line-height: 1.5;
}
.dzj-sms-number {
    color: #fff; font-size: 1.125rem;
}
.dzj-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.4);
    display: flex; justify-content: center;
}
.dzj-close-bottom {
    width: 100%; max-width: 380px;
    padding: 1rem;
    background: linear-gradient(to right, #D4AF37, #B08D2C);
    color: #000;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
    border: none; border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.2);
    transition: all 0.2s;
}
.dzj-close-bottom:hover { transform: scale(1.02); }
.dzj-close-bottom:active { transform: scale(0.95); }
.dzj-loading {
    display: flex; flex-direction: column; align-items: center; justify-content: center; height: 160px; gap: 1rem;
}
.dzj-spinner {
    width: 32px; height: 32px;
    border: 2px solid var(--gold-primary); border-top-color: transparent;
    border-radius: 50%;
    animation: dzj-spin 1s linear infinite;
}
@keyframes dzj-spin { to { transform: rotate(360deg); } }
.dzj-error { text-align: center; color: #ef4444; }

/* ====================================================
   DAILY REFLECTION SECTION
   ==================================================== */
.daily-reflection-section {
    padding: 100px 0;
    background: var(--bg-deep-black);
    position: relative;
}

.daily-reflection-section .section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.daily-reflection-section .reflection-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-gold-low);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.daily-reflection-section .reflection-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
}

.daily-reflection-section .reflection-body p {
    margin-bottom: 20px;
}

.daily-reflection-section .reflection-body p:last-child {
    margin-bottom: 0;
}

.daily-reflection-section .reflection-body strong {
    color: #fff;
    font-weight: 600;
}

.daily-reflection-section .dzj-youtube-section {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .daily-reflection-section {
        padding: 60px 0;
    }
    .daily-reflection-section .reflection-card {
        padding: 24px;
    }
    .daily-reflection-section .reflection-body {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ==========================================
   GOOGLE TRANSLATE CUSTOM STYLING (PREMIUM BLACK & GOLD)
   ========================================== */
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
}

.goog-te-gadget {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0 !important;
    color: transparent !important;
}

.goog-te-gadget > span,
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #eaeaea !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.goog-te-gadget .goog-te-combo:hover {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: #fff !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

/* Hide top Google Translate iframe banner, tooltips, and text highlights */
iframe[class*="goog"],
iframe[id*="goog"],
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner,
.goog-te-menu-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

html {
    margin-top: 0px !important;
}

/* ----------------------------------------------------
   SECTION F2: GOOGLE REVIEWS STYLES (PREMIUM DARK GLASSMORPHISM)
---------------------------------------------------- */
.reviews-section {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-dark-gradient);
    border-bottom: 1px solid var(--border-gold-low);
}

.reviews-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1100px;
    margin: 3rem auto 1rem auto;
    padding: 0 40px;
}

.reviews-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

.review-card-inner {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold-low);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.review-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    opacity: 0;
    transition: var(--transition-smooth);
}

.review-card-inner:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-high);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.1);
}

.review-card-inner:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f1f1f 0%, #0d0d0d 100%);
    border: 1px solid var(--border-gold-low);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-pure-white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-gold-low);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.carousel-control:hover {
    background: var(--gold-primary);
    color: var(--bg-deep-black);
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.carousel-control.prev-btn {
    left: 0;
}

.carousel-control.next-btn {
    right: 0;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.reviews-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.google-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.google-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.google-logo-svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-pure-white);
}

/* 28. SIDE DRAWER - BIBLE PROMO CARD */
.drawer-bible-promo {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-gold-low);
    border-radius: 14px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.drawer-bible-promo:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.bible-promo-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.bible-promo-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-pure-white);
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.bible-promo-subtitle {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.bible-promo-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 0.75rem 0;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.bible-promo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.drawer-bible-promo:hover .bible-promo-image-wrapper {
    border-color: var(--gold-primary);
}

.drawer-bible-promo:hover .bible-promo-img {
    transform: scale(1.03);
}

.bible-promo-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.sms-instruction {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #ccc;
}

.sms-instruction strong {
    display: block;
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-fast);
    letter-spacing: 0.03em;
}

.promo-btn.call-btn {
    background: var(--gold-primary);
    color: #000;
}

.promo-btn.call-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.promo-btn.sms-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.promo-btn.sms-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.bible-promo-footnote {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.85rem;
    font-style: italic;
}

/* ==========================================================================
   MOBILE HEADER ULTRA-PREMIUM CLEANUP (< 768px)
   Eliminates ugly wrapped text, stacked logos & header overflow on mobile
   ========================================================================== */
@media (max-width: 767px) {
    /* 1. Fixed sleek 60px mobile header height */
    .main-header {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
        padding: 0 !important;
    }

    .header-container {
        padding: 0 0.85rem !important;
        height: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        max-width: 100% !important;
        flex-wrap: nowrap !important;
    }

    /* 2. Left side: Hamburger + Clean Single-Line Logo */
    .header-left {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }

    .hamburger-menu {
        margin-right: 2px !important;
        flex-shrink: 0 !important;
    }

    .brand-logo, .logo-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 4px !important;
        text-decoration: none !important;
    }

    /* Hide subtitle on mobile so logo is always 1 clean horizontal line */
    .brand-subtitle, .logo-bottom {
        display: none !important;
    }

    .brand-title, .logo-top {
        font-family: 'Cinzel', serif !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        letter-spacing: 1px !important;
        color: #ffffff !important;
        white-space: nowrap !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    /* 3. Right side: Format nav links as compact icon-only circular buttons */
    .header-right .nav-link,
    .header-right .btn-dzj-header {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(212, 175, 55, 0.25) !important;
        color: var(--gold-primary, #d4af37) !important;
        font-size: 0 !important; /* Hide text label on mobile, show icon only */
        text-decoration: none !important;
        flex-shrink: 0 !important;
        transition: all 0.2s ease !important;
    }

    .header-right .nav-link i,
    .header-right .btn-dzj-header i {
        font-size: 0.95rem !important;
        margin: 0 !important;
        color: var(--gold-primary, #d4af37) !important;
    }

    .header-right .nav-link.active,
    .header-right .nav-link:hover,
    .header-right .btn-dzj-header:hover {
        background: rgba(212, 175, 55, 0.18) !important;
        border-color: var(--gold-primary, #d4af37) !important;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
    }

    .mobile-live-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        background: #ff2a55 !important;
        color: #ffffff !important;
        font-size: 0 !important;
        text-decoration: none !important;
        box-shadow: 0 0 12px rgba(255, 42, 85, 0.5) !important;
        flex-shrink: 0 !important;
    }

    .mobile-live-btn i {
        font-size: 0.9rem !important;
        color: #ffffff !important;
        margin: 0 !important;
    }

    /* Keep right side compact with icon action buttons */
    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }

    .header-right .sms-button {
        width: 36px !important;
        height: 36px !important;
    }
}

/* Hide Dobrze, że jesteś avatar button in header on mobile screens */
@media (max-width: 599px) {
    #navDzjIconBtn {
        display: none !important;
    }
}

/* ==========================================================================
   9. TABLET DESKTOP LAYOUT ADAPTATION (768px - 1199px)
   Refined desktop experience tailored specifically for tablets & iPads
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1199px) {
    /* 1. Prevent side promo banners from obscuring tablet content */
    .side-promo {
        display: none !important;
    }

    /* 2. Header Live Schedule Widget - Compact 2-item display for Tablet Header */
    .header-live-schedule {
        display: flex !important;
        font-size: 0.68rem !important;
        gap: 6px !important;
        max-width: 360px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        align-items: center !important;
        margin: 0 8px !important;
    }
    .header-live-schedule .next-label[style*="opacity: 0.7"],
    .header-live-schedule #headerThirdLiveTitle,
    .header-live-schedule .header-schedule-sep:last-of-type {
        display: none !important;
    }

    /* 3. Balanced 2-Column Desktop Hero Section for Tablet */
    .hero-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        text-align: left !important;
        align-items: center !important;
        padding: 110px 2rem 50px 2rem !important;
    }
    .hero-text-col {
        order: 1 !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    .hero-title {
        text-align: left !important;
        font-size: clamp(2rem, 3.6vw, 2.8rem) !important;
    }
    .hero-text-col > .gold-divider {
        margin: 0.5rem 0 1.5rem 0 !important;
    }
    .gold-divider.centered,
    .section-header .gold-divider,
    .section-header .gold-divider.centered,
    .centered .gold-divider {
        margin: 0.75rem auto 1.25rem auto !important;
        width: 120px !important;
        height: 2px !important;
        background: linear-gradient(90deg, transparent, var(--gold-primary, #d4af37), transparent) !important;
        display: block !important;
    }
    .hero-description {
        margin: 0 0 2rem 0 !important;
        text-align: left !important;
    }
    .hero-image-col {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
    }
    .hero-character-img {
        max-width: 320px !important;
        width: 100% !important;
    }

    /* 4. Elegant 3-Column Radio Player Bar for Tablet */
    .radio-player-bar {
        height: 85px !important;
        padding: 0.4rem 1rem !important;
    }
    .player-container {
        grid-template-columns: 210px 1fr 180px !important;
        grid-template-rows: 1fr !important;
        gap: 0.75rem !important;
        padding: 0 1rem !important;
        align-items: center !important;
    }
    .player-left {
        grid-column: 1 !important;
        justify-content: flex-start !important;
    }
    .player-center {
        display: flex !important;
        grid-column: 2 !important;
        justify-content: center !important;
    }
    .player-right {
        grid-column: 3 !important;
        justify-content: flex-end !important;
        margin-top: 0 !important;
        width: auto !important;
    }
    .track-scroller-container {
        width: 120px !important;
    }

    /* 5. Spacious 2-Column Grids for Tablet Screens */
    .apps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .featured-channels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .featured-channels-grid > .featured-channel-card:last-child {
        grid-column: span 2 !important;
        max-width: 580px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    .social-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
        max-width: 100% !important;
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .support-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .support-grid > .support-card:last-child {
        grid-column: span 2 !important;
        max-width: 580px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
}

/* 2-Block Cascading Shortcuts Menu */
#actionsList {
    max-height: calc(100vh - 85px);
    max-height: calc(100dvh - 85px);
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.45) rgba(0, 0, 0, 0.25);
}

#actionsList::-webkit-scrollbar {
    width: 5px;
}
#actionsList::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}
#actionsList::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.45);
    border-radius: 6px;
}
#actionsList::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

.shortcuts-blocks-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

.shortcut-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#actionsList.open .shortcut-block.block-1 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

#actionsList.open .shortcut-block.block-2 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    #actionsList {
        width: min(340px, calc(100vw - 20px)) !important;
        right: -6px !important;
        max-height: calc(100vh - 75px) !important;
        max-height: calc(100dvh - 75px) !important;
        padding: 12px 10px !important;
    }
    .shortcuts-blocks-container {
        flex-direction: column !important;
        gap: 8px !important;
    }
}

@media (max-width: 400px) {
    #actionsList {
        width: calc(100vw - 16px) !important;
        right: -8px !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   Q&A / FAQ ACCORDION COMPONENT (GEO / AIO & USER EXPERIENCE)
   ════════════════════════════════════════════════════════════════════════ */
.qna-section {
    position: relative;
    padding: 70px 20px 80px 20px;
    background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.07) 0%, rgba(8, 10, 18, 0.98) 70%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.qna-container {
    max-width: 960px;
    margin: 0 auto;
}

.qna-header-box {
    text-align: center;
    margin-bottom: 40px;
}

.qna-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.qna-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.qna-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.qna-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qna-item {
    background: rgba(16, 20, 34, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.qna-item:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.1);
}

.qna-item[open] {
    border-color: var(--gold-primary);
    background: rgba(20, 25, 42, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.qna-summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.2s ease;
}

.qna-summary::-webkit-details-marker {
    display: none;
}

.qna-summary:hover {
    color: var(--gold-light);
}

.qna-q-title {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.35;
}

.qna-badge-q {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.qna-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.qna-item[open] .qna-chevron {
    transform: rotate(180deg);
    background: var(--gold-primary);
    color: #000;
}

.qna-answer {
    padding: 0 22px 20px 22px;
    color: #d4d4d8;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 14px;
}

.qna-answer p {
    margin-bottom: 12px;
}

.qna-answer p:last-child {
    margin-bottom: 0;
}

.qna-answer a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.qna-answer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .qna-section {
        padding: 50px 14px 60px 14px;
    }
    .qna-summary {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    .qna-answer {
        padding: 0 16px 16px 16px;
        font-size: 0.9rem;
    }
}


