/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100vw;
    height: auto;
    min-height: 85vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: white;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: 1rem;
}

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

/* Animated Background Shapes */
.shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s infinite;
}

.shape-1 {
    background: rgba(255, 0, 0, 0.4);
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
}

.shape-2 {
    background: rgba(0, 0, 255, 0.4);
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(100px, 100px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Logo Section */
.logo-container {
    position: relative;
    text-align: center;
    padding: 2rem 0;
    z-index: 2;
    perspective: 1000px;
}

.logo {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.logo:hover {
    transform: translateZ(50px) rotateY(10deg);
}

.pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,0,0,0.8) 0%, rgba(255,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}

/* Profile Section */
.profile-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    margin: 1.5rem auto;
    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;
    z-index: 2;
}

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

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 45px 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); }
}

.profile-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    line-height: 1.2;
}

.profile-time {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.3;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073; }
    to { text-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6; }
}

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

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

.live-indicator i {
    color: #6c757d;
}

.live-indicator.active i {
    color: #dc3545;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Profile Description */
.profile-description {
    text-align: center;
    margin-top: 1rem;
}

.description-text {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 90%;
    margin: 0 auto;
}

/* Audio Player Section */
.player-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    margin: 1rem auto;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    z-index: 2;
    position: relative;
}

.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;
    justify-content: center;
    gap: 2rem;
    min-height: 200px;
}

.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;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider:hover {
    background: rgba(255, 255, 255, 0.2);
    height: 6px;
}

.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 {
    text-align: center;
    margin-top: 0.75rem;
    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: #dc3545;
    animation: blink 1s infinite;
}

.status-dot.success {
    background: #28a745;
}

/* DJ Slider Styles */
.dj-slides {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dj-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dj-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.dj-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* DJ Info Styles */
.dj-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dj-image {
    position: relative;
    margin-bottom: 2rem;
}

.dj-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.dj-image img:hover {
    transform: scale(1.05);
}

.playing-indicator {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.dj-details {
    width: 100%;
}

.dj-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dj-genre {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.track-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Controls Container */
.controls-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: auto;
}

/* Playback Controls */
.playback-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.playback-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.playback-controls button:hover {
    transform: scale(1.1);
}

.btn-play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-prev,
.nav-next {
    background: none;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.nav-prev:hover,
.nav-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Medium-Large Screens (Laptops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        min-height: 88vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }

    .hero-section .container {
        max-width: 960px;
        padding: 1.5rem;
        width: 100%;
    }

    .profile-container {
        max-width: 600px;
        width: 80%;
        padding: 2.25rem;
        margin: 1.25rem auto;
    }

    .player-container {
        max-width: 550px;
        width: 80%;
        padding: 1.75rem;
        margin: 1.25rem auto;
    }

    .custom-player {
        padding: 1.125rem;
        gap: 1.125rem;
        min-height: 100px;
    }

    .play-button {
        width: 110px;
        height: 110px;
        font-size: 2.75rem;
    }

    .volume-controls {
        max-width: 220px;
    }

    .volume-button {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .stream-status {
        font-size: 1.15rem;
        margin-top: 0.5rem;
    }

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

    .profile-title {
        font-size: 2.125rem;
    }

    .profile-time {
        font-size: 1.3rem;
    }

    .description-text {
        font-size: 1.05rem;
        max-width: 88%;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1200px) {
    .hero-section {
        min-height: 90vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }

    .hero-section .container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .profile-container {
        max-width: 700px;
        width: 75%;
        padding: 2.5rem;
        margin: 1.5rem auto;
    }

    .player-container {
        max-width: 600px;
        width: 75%;
        padding: 2rem;
        margin: 1.5rem auto;
    }

    .custom-player {
        padding: 1.25rem;
        gap: 1.25rem;
        min-height: 120px;
    }

    .play-button {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .volume-controls {
        max-width: 250px;
    }

    .volume-button {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        padding: 1rem;
    }

    .stream-status {
        font-size: 1.25rem;
        margin-top: 1rem;
    }

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

    .profile-title {
        font-size: 2.25rem;
    }

    .profile-time {
        font-size: 1.375rem;
    }

    .description-text {
        font-size: 1.1rem;
        max-width: 85%;
    }
}

@media (min-width: 1440px) {
    .hero-section {
        min-height: 95vh;
        height: auto;
        padding: 2.5rem 0;
    }

    .profile-container {
        max-width: 800px;
        width: 70%;
        padding: 3rem;
    }

    .player-container {
        max-width: 650px;
        width: 70%;
        padding: 2.5rem;
    }

    .custom-player {
        padding: 1.5rem;
        gap: 1.5rem;
        min-height: 140px;
    }

    .play-button {
        width: 140px;
        height: 140px;
        font-size: 3.5rem;
    }

    .volume-controls {
        max-width: 300px;
    }

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

    .profile-title {
        font-size: 2.5rem;
    }

    .profile-time {
        font-size: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 3rem 0;
    }

    .hero-section .container {
        max-width: 1400px;
        width: 100%;
    }

    .profile-container {
        max-width: 900px;
        width: 65%;
        padding: 3.5rem;
    }

    .player-container {
        max-width: 750px;
        width: 65%;
        padding: 3rem;
    }

    .custom-player {
        padding: 1.75rem;
        gap: 1.75rem;
        min-height: 150px;
    }

    .play-button {
        width: 160px;
        height: 160px;
        font-size: 4rem;
    }

    .volume-controls {
        max-width: 350px;
    }

    .volume-button {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .volume-slider {
        height: 6px;
    }

    .volume-slider:hover {
        height: 8px;
    }

    .stream-status {
        font-size: 1.375rem;
        margin-top: 1.25rem;
    }

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

    .profile-title {
        font-size: 2.75rem;
    }

    .profile-time {
        font-size: 1.625rem;
    }

    .description-text {
        font-size: 1.2rem;
        max-width: 80%;
    }
}

/* Medium Screens (Large Tablets to Small Laptops) */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-section {
        min-height: 85vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }

    .hero-section .container {
        max-width: 720px;
        padding: 1.25rem;
        width: 100%;
    }

    .profile-container {
        max-width: 520px;
        width: 85%;
        padding: 2rem;
        margin: 1rem auto;
    }

    .player-container {
        max-width: 480px;
        width: 85%;
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .custom-player {
        padding: 1rem;
        gap: 1rem;
        min-height: 90px;
    }

    .play-button {
        width: 105px;
        height: 105px;
        font-size: 2.6rem;
    }

    .volume-controls {
        max-width: 200px;
    }

    .volume-button {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .stream-status {
        font-size: 1.1rem;
    }

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

    .profile-title {
        font-size: 2.05rem;
    }

    .profile-time {
        font-size: 1.2rem;
    }

    .description-text {
        font-size: 1rem;
        max-width: 90%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 70vh;
    }

    .profile-container,
    .player-container {
        margin: 1rem;
        padding: 1.25rem;
        max-width: 90%;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        margin-bottom: 0.75rem;
    }

    .profile-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .profile-time {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1px;
    }

    .description-text {
        font-size: 0.9rem;
        line-height: 1.3;
        max-width: 95%;
    }

    .controls-container {
        bottom: 1.5rem;
        width: 90%;
    }

    .playback-controls,
    .slider-nav {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .volume-control {
        display: none;
    }

    .slider-dots {
        margin: 0 0.5rem;
    }

    .nav-prev,
    .nav-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
    }

    .profile-container,
    .player-container {
        margin: 0.75rem;
        padding: 1rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.5rem;
    }

    .profile-title {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }

    .profile-time {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .description-text {
        font-size: 0.85rem;
        line-height: 1.25;
    }

    .controls-container {
        bottom: 1rem;
    }

    .playback-controls,
    .slider-nav {
        padding: 0.5rem 0.75rem;
    }

    .btn-play-pause {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-section {
        min-height: 55vh;
    }

    .profile-container {
        max-width: 95%;
        border-radius: 15px;
    }

    .player-container {
        max-width: 95%;
        border-radius: 15px;
    }

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

    .profile-title {
        font-size: 1.375rem;
        line-height: 1.1;
    }

    .profile-time {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .show-title {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .description-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}