/* Hero Section Styles - FIXED: Removed conflicting animations */
.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: home-gradient 20s ease infinite;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@keyframes home-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Simplified Hero Background Shapes - FIXED: Reduced to 1 shape only */
.home-hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.home-hero-shape {
    position: absolute;
    filter: blur(60px);
    opacity: 0.2;
    will-change: transform;
    animation: home-float 20s infinite ease-in-out;
}

.home-hero-shape-1 {
    background: rgba(255, 0, 0, 0.2);
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.home-hero-shape-2 {
    background: rgba(0, 0, 255, 0.2);
    width: 250px;
    height: 250px;
    bottom: -125px;
    right: -125px;
    animation-delay: -10s;
}

@keyframes home-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(30px, 30px) rotate(180deg);
        opacity: 0.3;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.2;
    }
}



/* REMOVED: Section Background Shapes to eliminate conflicts */

/* Logo Styles - FIXED: Ensured permanent visibility */
.home-logo {
    position: absolute;
    opacity: 1 !important;
    z-index: 10; /* Increased z-index to ensure visibility */
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.home-logo img {
    max-width: min(200px, 45vw);
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: home-logo-pulse 4s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
    opacity: 1 !important;
}

.home-logo img:hover {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
    transform: scale(1.05);
}

.home-pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(220px, 48vw);
    height: min(220px, 48vw);
    background: radial-gradient(circle, rgba(255,0,0,0.6) 0%, rgba(255,0,0,0) 70%);
    border-radius: 50%;
    z-index: 2;
    animation: home-pulse-red 3s infinite ease-in-out;
    pointer-events: none;
    opacity: 1 !important;
}

@keyframes home-pulse-red {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

@keyframes home-logo-pulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

/* Star Container Styles - FIXED: Ensured permanent visibility */
.home-star-container {
    position: absolute;
    width: min(300px, 85vw);
    height: min(300px, 85vw);
    opacity: 1 !important;
    z-index: 11; /* Increased z-index to ensure visibility */
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.home-button-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* Button Styles */
.home-circle-button {
    position: absolute;
    width: clamp(45px, 12.5vw, 62px);
    height: clamp(45px, 12.5vw, 62px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 12; /* Increased z-index to ensure visibility */
    text-decoration: none !important;
    color: inherit;
    border: none;
    outline: none;
    pointer-events: auto;
}

.home-circle-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.home-circle-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(231, 60, 126, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-circle-button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.home-circle-button:hover .home-circle-button-inner {
    transform: scale(1.1);
}

.home-circle-button:hover::after {
    opacity: 1;
    animation: home-pulse-button 2s infinite;
}

@keyframes home-pulse-button {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.home-circle-button-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.home-circle-button i {
    color: #fff;
    font-size: clamp(20px, 5.47vw, 30px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Button label styles */
.home-circle-button .home-button-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 13; /* Increased z-index to ensure visibility */
    top: 120%;
    left: 50%;
}

/* Hide labels on desktop and show on hover */
@media (hover: hover) and (min-width: 1024px) {
    .home-circle-button .home-button-label {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    .home-circle-button:hover .home-button-label {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Always show labels on touch devices and smaller screens */
@media (hover: none), (max-width: 1023px) {
    .home-circle-button .home-button-label {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .home-hero-shape-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        left: -200px;
    }

    .home-hero-shape-2 {
        width: 350px;
        height: 350px;
        bottom: -175px;
        right: -175px;
    }

    .home-logo img {
        max-width: min(250px, 35vw);
    }

    .home-pulse-bg {
        width: min(270px, 38vw);
        height: min(270px, 38vw);
    }

    .home-star-container {
        width: min(350px, 80vw);
        height: min(350px, 80vw);
        top: 47%;
    }

    .home-circle-button {
        width: clamp(50px, 11.25vw, 69px);
        height: clamp(50px, 11.25vw, 69px);
    }

    .home-circle-button i {
        font-size: clamp(22px, 3.9vw, 32px);
    }

    .home-circle-button .home-button-label {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
    .home-hero-shape {
        filter: blur(80px);
        opacity: 0.3;
    }

    .home-hero-shape-1 {
        width: 500px;
        height: 500px;
        top: -250px;
        left: -250px;
    }

    .home-hero-shape-2 {
        width: 400px;
        height: 400px;
        bottom: -200px;
        right: -200px;
    }

    .home-star-container {
        width: min(400px, 45vw);
        height: min(400px, 45vw);
        top: 48%;
    }

    .home-circle-button {
        width: clamp(44px, 8.75vw, 69px);
        height: clamp(44px, 8.75vw, 69px);
    }

    .home-circle-button i {
        font-size: clamp(18px, 3.125vw, 26px);
    }
}

/* Landscape orientation optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .home-hero {
        height: 100vh;
        min-height: 500px;
    }

    .home-logo img {
        max-width: min(180px, 30vw);
    }

    .home-pulse-bg {
        width: min(200px, 33vw);
        height: min(200px, 33vw);
    }

    .home-star-container {
        width: min(280px, 75vw);
        height: min(280px, 75vw);
        top: 40%;
    }

    .home-circle-button {
        width: clamp(40px, 7.5vw, 56px);
        height: clamp(40px, 7.5vw, 56px);
    }

    .home-circle-button i {
        font-size: clamp(16px, 3.5vw, 24px);
    }
}

/* Remove any unwanted text decorations */
.home-circle-button,
.home-circle-button:hover,
.home-circle-button:focus,
.home-circle-button:active,
.home-circle-button:visited {
    text-decoration: none !important;
    color: inherit;
}

/* Main Content Sections - FIXED: Simplified animations */
.home-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
}

/* Ensure home sections use the same container structure as navigation */
.home-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}



/* Glass Card for Content Sections - FIXED: Removed conflicting transforms */
.home-content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.home-content-card.home-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.home-content-card:hover {
    transform: translateY(-5px);
}

/* Section Titles */
.home-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.home-section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Services Grid */
.home-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1024px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive grid adjustments */
@media (min-width: 480px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .home-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-service-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.home-service-card.home-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.home-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.home-service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.home-service-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.home-service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Featured DJ Section */
.home-featured-dj {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-dj-image-container {
    position: relative;
    min-width: 200px;
    flex: 0 0 auto;
}

.home-dj-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.1);
    animation: home-float-profile 6s ease-in-out infinite;
}

@keyframes home-float-profile {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.home-dj-info {
    flex: 1;
    min-width: 280px;
}

.home-dj-name {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.home-dj-schedule {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.home-dj-schedule i {
    color: var(--primary-color);
}

.home-live-status {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-live-status i {
    font-size: 0.75rem;
    color: var(--danger-color);
    animation: home-blink 1.5s infinite;
    margin-right: 0.5rem;
}

.home-live-status.active i {
    color: var(--success-color);
}

@keyframes home-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

.home-dj-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.home-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1024px;
    box-sizing: border-box;
}

.home-stat-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: transform 0.3s ease;
}

.home-stat-card.home-animated {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.home-stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.home-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.home-stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Call to Action */
.home-cta-section {
    text-align: center;
    padding: 4rem 0;
}

.home-cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    text-decoration: none !important;
}

.home-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-secondary), var(--secondary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.home-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
}

.home-cta-button:hover::before {
    opacity: 1;
}

.home-cta-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Remove text decorations from all links and buttons */
.home-cta-button,
.home-cta-button:hover,
.home-cta-button:focus,
.home-cta-button:active,
.home-cta-button:visited,
a.home-cta-button,
a.home-cta-button:hover,
a.home-cta-button:focus,
a.home-cta-button:active,
a.home-cta-button:visited {
    text-decoration: none !important;
    color: white !important;
}

/* Tablet screens */
/* Medium mobile devices (375px and up) */
@media (min-width: 375px) {
    .home-stats-grid {
        gap: 1.75rem;
    }

    .home-stat-card {
        min-height: 150px;
    }

    .home-stat-value {
        font-size: 2.75rem;
    }

    .home-stat-icon {
        font-size: 2.25rem;
    }
}

/* Small tablets and large phones (480px and up) */
@media (min-width: 480px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .home-stat-card {
        min-height: 160px;
    }

    .home-stat-value {
        font-size: 3rem;
    }

    .home-stat-icon {
        font-size: 2.5rem;
    }

    .home-dj-image {
        width: 250px;
        height: 250px;
    }

    .home-dj-image-container {
        min-width: 250px;
    }

    .home-section-title {
        font-size: 2.25rem;
    }

    .home-section-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .home-section {
        padding: 4rem 0;
    }

    .home-content-card {
        padding: 3rem;
    }

    .home-section-title {
        font-size: 2.5rem;
    }

    .home-section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .home-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        max-width: 100%;
    }

    .home-service-card {
        padding: 2rem;
    }

    .home-service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .home-service-title {
        font-size: 1.5rem;
    }

    .home-featured-dj {
        flex-direction: row;
        text-align: left;
    }

    .home-dj-schedule {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .home-dj-name {
        font-size: 2rem;
    }

    .home-dj-schedule {
        font-size: 1.2rem;
    }

    .home-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .home-stat-card {
        padding: 2rem;
        min-height: 180px;
    }

    .home-cta-section {
        padding: 5rem 0;
    }

    .home-cta-button {
        padding: 1rem 3rem;
        font-size: 1.25rem;
    }
}

/* Large tablet and desktop */
@media (min-width: 1024px) {
    .home-services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1024px;
    }

    .home-dj-info {
        text-align: left;
    }

    .home-featured-dj {
        text-align: left;
    }
}

/* Small mobile adjustments */
/* Extra small mobile devices (320px and below) */
@media (max-width: 320px) {
    .home-content-card {
        padding: 1.5rem;
    }

    .home-section-title {
        font-size: 1.75rem;
    }

    .home-dj-image {
        width: 180px;
        height: 180px;
    }

    .home-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-stat-card {
        padding: 1.25rem;
        min-height: 120px;
    }

    .home-stat-value {
        font-size: 2rem;
    }

    .home-stat-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .home-stat-label {
        font-size: 0.75rem;
    }
}

/* Animation classes for JavaScript - FIXED: Simplified */
.home-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.6s ease, transform 0.6s ease !important;
}

/* DJ Details Styling */
.home-dj-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-dj-genres, .home-dj-experience {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.home-dj-genres strong, .home-dj-experience strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

@media (min-width: 768px) {
    .home-dj-details {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .home-dj-genres, .home-dj-experience {
        font-size: 1rem;
        margin: 0.75rem 0;
    }
}

/* Now Playing Section */
.home-now-playing-section {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.home-now-playing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.home-live-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: home-pulse-live 2s infinite;
    z-index: 3;
}

@keyframes home-pulse-live {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(220, 53, 69, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(220, 53, 69, 0.9); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(220, 53, 69, 0.7); }
}

.home-live-badge i {
    margin-right: 0.3rem;
    animation: home-blink 1s infinite;
}

.home-now-playing-dj {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.home-dj-avatar {
    position: relative;
}

.home-live-dj-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #dc3545;
    box-shadow:
        0 0 20px rgba(220, 53, 69, 0.6),
        0 0 40px rgba(220, 53, 69, 0.3);
    animation: home-float-live 3s ease-in-out infinite;
}

@keyframes home-float-live {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.home-now-playing-info {
    text-align: center;
}

.home-live-dj-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.home-live-show-title {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-style: italic;
}

.home-live-schedule {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.home-live-schedule i {
    margin-right: 0.5rem;
    color: #dc3545;
}

.home-live-button {
    background: linear-gradient(45deg, #dc3545, #c82333);
    animation: home-glow-live 2s ease-in-out infinite alternate;
}

@keyframes home-glow-live {
    from { box-shadow: 0 0 5px #dc3545, 0 0 10px #dc3545, 0 0 15px #dc3545; }
    to { box-shadow: 0 0 10px #dc3545, 0 0 20px #dc3545, 0 0 30px #dc3545; }
}

.home-live-button:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-3px) scale(1.05);
}

@media (min-width: 768px) {
    .home-now-playing-dj {
        flex-direction: row;
        text-align: left;
    }

    .home-now-playing-info {
        text-align: left;
    }

    .home-live-dj-image {
        width: 150px;
        height: 150px;
    }

    .home-live-dj-name {
        font-size: 2.2rem;
    }

    .home-live-show-title {
        font-size: 1.4rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .home-hero,
    .home-hero-shape,
    .home-logo img,
    .home-pulse-bg,
    .home-dj-image,
    .home-live-dj-image,
    .home-live-badge,
    .home-live-badge i {
        animation: none !important;
    }

    .home-circle-button:hover,
    .home-service-card:hover,
    .home-content-card:hover {
        transform: none !important;
    }

    * {
        transition: none !important;
    }
}
