body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #32011a;
    color: white;
    min-height: 100dvh;
    height: 100svh; /* Ensures proper adjustment */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

header {
    padding: 20px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.column {
    text-align: right;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 150px;
    height: 150px;
    margin-top: 25px;
    margin-right: 30px;
}

.play-icon, .pause-icon {
    width: 100%;
    height: 100%;
    fill: white;
}

.pause-icon {
    display: none;
}

.visualizer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    z-index: 1;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #FC6301 0%, #FF2301 35%, #FF2301 70%,#fc610194 70.1%, #fc61014f 70%, #32011a 100%);
    transition: height 0.1s ease;
    box-shadow: 0px 0px 100px 15px #32011a18;
}

.contacts-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    padding: 11px 24px;
    background-color: #32011a;
    border-radius: 6px;
}

.contacts-info span {
    font-size: 15px;
    margin-bottom: 4px;
    text-align: right;
}

.contacts-info a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

/* Component 52 */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-end;
    }

    .play-button {
        background: none;
        border: none;
        cursor: pointer;
        width: 50px;
        height: 50px;
        margin-top: 7px;
        margin-right: 20px;
    }

    .logo {
        max-width: 200px;
        width: 100%;
        height: auto;
    }
}

.contact-information {
    margin: 25px auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    position: relative;
    z-index: 9999;
    border-radius: 500px;
    font-family: 'Raleway', sans-serif;
    background-color: rgba(0,0,0,0.6); 
    padding: 15px 0px; 
    border-radius: 50px; 
    font-family: 'Raleway', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: white;
    flex: 1;
    min-width: 250px;
    justify-content: center;
    font-weight: 500;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: white;
}

.contact-item span {
    margin-right: 8px;
    white-space: nowrap;
}

.contact-item a {
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .contact-information {
        width: calc(100% - 60px);
        border-radius: 20px;
        padding: 10px;
    }
    
    .contact-row {
        flex-direction: column;
        row-gap: 10px;
    }

    .contact-item {
        justify-content: flex-start;
        min-width: unset;
    }
}

/* Add even smaller radius for very small screens */
@media (max-width: 480px) {
    .contact-information {
        border-radius: 12px;
        width: calc(100% - 60px);
    }
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
}

.live-dot {
    width: 14px;
    height: 14px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.live-text {
    font-size: 12px;
    font-weight: 600;
    color: #ff0000;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.track-info {
    position: fixed;
    top: 200px;
    left: 50%;
    transform: translateX(-60%);
    width: 90%;
    max-width: 380px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.current-track {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.track-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.track-details {
    flex: 1;
}

.track-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.track-artist {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.next-track {
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.next-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.next-title {
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.next-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}