#site-content {
    margin: 2rem 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Remove any Bootstrap container padding if used */
#site-content .container,
#site-content .container-fluid {
    padding: 0;
    max-width: 100%;
}

/* Standard card styling for content areas */
.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);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateZ(20px);
}

/* Card titles */
.content-card .card-title {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

/* Profile image styling similar to welcome blade */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    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: float-profile 6s ease-in-out infinite;
}

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

/* Audio player styling for content areas */
.custom-player {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.play-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.5);
    z-index: -1;
    animation: pulse-play 2s infinite;
}

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

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.volume-controls {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 200px;
}

.volume-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-slider {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Stream status indicator */
.stream-status {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger-color);
    animation: blink 1s infinite;
}

.status-dot.success {
    background: var(--success-color);
}

/* Live indicator */
.live-indicator {
    display: inline-block;
    margin-left: 10px;
}

.live-indicator.active {
    animation: blink 1.5s infinite;
}

.live-indicator i {
    color: #6c757d; /* Default grey color when not live */
}

.live-indicator.active i {
    color: var(--danger-color); /* Red color when live */
}

/* Responsive Design for content */
@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem;
        margin: 1rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .custom-player {
        padding: 1.5rem;
    }
}
