@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pause-icon{
	border:none;
	outline:none;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    background: #f0f0f0;
    min-height: 100vh;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

/* Header Section */
.header {
    padding: 40px 30px 20px;
    background: white;
}

.logo-spotitalia {
    max-width: 450px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.contact-info .phone {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-info .phone a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .phone a:hover {
    color: #ee008c;
}

.contact-info .email {
    font-size: 16px;
    color: #333;
}

/* Agency Section */
.agency-section {
    padding: 20px 30px;
    background: white;
}

.agency-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Radio Section */
.radio-section {
    padding: 40px 30px;
    background: white;
}

.radio-heading {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

/* Radio Fantastica Logo */
.radio-fantastica-logo {
    max-width: 480px;
    width: 75%;
    height: auto;
    margin: 0 auto 40px;
    display: block;
}

/* Player Pill Container */
.player-pill {
    background: linear-gradient(135deg, #ee008c 0%, #d8007d 100%);
    border-radius: 60px;
    padding: 25px 40px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 10px 35px rgba(238, 0, 140, 0.35);
    position: relative;
    overflow: hidden;
}

/* Soundwave Decoration in Player - Always Visible */
.soundwave-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    height: 50px;
    margin-bottom: 20px;
}

.soundwave-decoration .bar {
    width: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transform-origin: center;
    transition: all 0.3s ease;
}

.soundwave-decoration.playing .bar {
    background: rgba(255, 255, 255, 0.95);
    animation: soundwave-decoration 0.6s ease-in-out infinite;
}

.soundwave-decoration.playing .bar:nth-child(1) { animation-delay: 0s; }
.soundwave-decoration.playing .bar:nth-child(2) { animation-delay: 0.02s; }
.soundwave-decoration.playing .bar:nth-child(3) { animation-delay: 0.04s; }
.soundwave-decoration.playing .bar:nth-child(4) { animation-delay: 0.06s; }
.soundwave-decoration.playing .bar:nth-child(5) { animation-delay: 0.08s; }
.soundwave-decoration.playing .bar:nth-child(6) { animation-delay: 0.1s; }
.soundwave-decoration.playing .bar:nth-child(7) { animation-delay: 0.12s; }
.soundwave-decoration.playing .bar:nth-child(8) { animation-delay: 0.14s; }
.soundwave-decoration.playing .bar:nth-child(9) { animation-delay: 0.16s; }
.soundwave-decoration.playing .bar:nth-child(10) { animation-delay: 0.18s; }
.soundwave-decoration.playing .bar:nth-child(11) { animation-delay: 0.2s; }
.soundwave-decoration.playing .bar:nth-child(12) { animation-delay: 0.22s; }
.soundwave-decoration.playing .bar:nth-child(13) { animation-delay: 0.24s; }
.soundwave-decoration.playing .bar:nth-child(14) { animation-delay: 0.26s; }
.soundwave-decoration.playing .bar:nth-child(15) { animation-delay: 0.28s; }
.soundwave-decoration.playing .bar:nth-child(16) { animation-delay: 0.3s; }
.soundwave-decoration.playing .bar:nth-child(17) { animation-delay: 0.32s; }
.soundwave-decoration.playing .bar:nth-child(18) { animation-delay: 0.34s; }
.soundwave-decoration.playing .bar:nth-child(19) { animation-delay: 0.36s; }
.soundwave-decoration.playing .bar:nth-child(20) { animation-delay: 0.38s; }
.soundwave-decoration.playing .bar:nth-child(21) { animation-delay: 0.4s; }
.soundwave-decoration.playing .bar:nth-child(22) { animation-delay: 0.42s; }
.soundwave-decoration.playing .bar:nth-child(23) { animation-delay: 0.44s; }
.soundwave-decoration.playing .bar:nth-child(24) { animation-delay: 0.46s; }
.soundwave-decoration.playing .bar:nth-child(25) { animation-delay: 0.48s; }
.soundwave-decoration.playing .bar:nth-child(26) { animation-delay: 0.5s; }
.soundwave-decoration.playing .bar:nth-child(27) { animation-delay: 0.48s; }
.soundwave-decoration.playing .bar:nth-child(28) { animation-delay: 0.46s; }
.soundwave-decoration.playing .bar:nth-child(29) { animation-delay: 0.44s; }
.soundwave-decoration.playing .bar:nth-child(30) { animation-delay: 0.42s; }
.soundwave-decoration.playing .bar:nth-child(31) { animation-delay: 0.4s; }
.soundwave-decoration.playing .bar:nth-child(32) { animation-delay: 0.38s; }
.soundwave-decoration.playing .bar:nth-child(33) { animation-delay: 0.36s; }
.soundwave-decoration.playing .bar:nth-child(34) { animation-delay: 0.34s; }
.soundwave-decoration.playing .bar:nth-child(35) { animation-delay: 0.32s; }
.soundwave-decoration.playing .bar:nth-child(36) { animation-delay: 0.3s; }
.soundwave-decoration.playing .bar:nth-child(37) { animation-delay: 0.28s; }
.soundwave-decoration.playing .bar:nth-child(38) { animation-delay: 0.26s; }
.soundwave-decoration.playing .bar:nth-child(39) { animation-delay: 0.24s; }
.soundwave-decoration.playing .bar:nth-child(40) { animation-delay: 0.22s; }
.soundwave-decoration.playing .bar:nth-child(41) { animation-delay: 0.2s; }
.soundwave-decoration.playing .bar:nth-child(42) { animation-delay: 0.18s; }
.soundwave-decoration.playing .bar:nth-child(43) { animation-delay: 0.16s; }
.soundwave-decoration.playing .bar:nth-child(44) { animation-delay: 0.14s; }
.soundwave-decoration.playing .bar:nth-child(45) { animation-delay: 0.12s; }
.soundwave-decoration.playing .bar:nth-child(46) { animation-delay: 0.1s; }
.soundwave-decoration.playing .bar:nth-child(47) { animation-delay: 0.08s; }
.soundwave-decoration.playing .bar:nth-child(48) { animation-delay: 0.06s; }
.soundwave-decoration.playing .bar:nth-child(49) { animation-delay: 0.04s; }
.soundwave-decoration.playing .bar:nth-child(50) { animation-delay: 0.02s; }

@keyframes soundwave-decoration {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}

/* Player Controls inside Pill */
.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-button:active {
    transform: scale(0.95);
}

.play-icon,
.pause-icon {
    width: 0;
    height: 0;
    border-style: solid;
}

.play-icon {
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #ee008c;
    margin-left: 3px;
}

.pause-icon {
    width: 18px;
    height: 22px;
    position: relative;
}

.pause-icon::before,
.pause-icon::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 22px;
    background: #ee008c;
}

.pause-icon::before {
    left: 0;
}

.pause-icon::after {
    right: 0;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    font-size: 18px;
    filter: grayscale(1) brightness(10);
}

.volume-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Network Section */
.network-section {
    padding: 40px 30px;
    background: white;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.network-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.network-logo-link:hover {
    transform: scale(1.08);
}

.network-logo {
    max-width: 140px;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.network-logo-link:hover .network-logo {
    filter: brightness(1.1);
}

/* Social Section */
.social-section {
    padding: 40px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.social-title {
    color: white;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.whatsapp {
    background: #25d366;
}

.social-icon {
    width: 38px;
    height: 38px;
    fill: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }

    .container {
        max-width: 100%;
    }

    .logo-spotitalia {
        max-width: 350px;
    }

    .contact-info .phone {
        font-size: 26px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .contact-info .email {
        font-size: 17px;
    }

    .agency-title {
        font-size: 30px;
    }

    .radio-heading {
        font-size: 26px;
    }

    .radio-fantastica-logo {
        max-width: 400px;
    }

    .player-pill {
        padding: 20px 30px;
        max-width: 500px;
        border-radius: 50px;
    }

    .soundwave-decoration {
        height: 40px;
        gap: 2px;
    }

    .soundwave-decoration .bar {
        width: 3px;
    }

    .status {
        font-size: 17px;
    }

    .network-logo {
        max-width: 160px;
    }

    .social-title {
        font-size: 26px;
    }

    .social-link {
        width: 65px;
        height: 65px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 40px 10px;
    }

    .header,
    .agency-section,
    .radio-section,
    .network-section,
    .social-section {
        padding: 25px 15px;
    }

    .logo-spotitalia {
        max-width: 300px;
    }

    .contact-info .phone {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-info .email {
        font-size: 16px;
    }

    .agency-title {
        font-size: 26px;
    }

    .radio-heading {
        font-size: 24px;
    }

    .radio-fantastica-logo {
        max-width: 300px;
    }

    .player-pill {
        padding: 18px 20px;
        border-radius: 35px;
    }

    .soundwave-decoration {
        height: 35px;
        gap: 2px;
        margin-bottom: 15px;
    }

    .soundwave-decoration .bar {
        width: 2.5px;
    }

    .player-controls {
        gap: 15px;
    }

    .play-button {
        width: 52px;
        height: 52px;
    }

    .status {
        font-size: 16px;
    }

    .volume-control {
        gap: 8px;
    }

    .volume-icon {
        font-size: 16px;
    }

    /* Keep network logos horizontal on mobile */
    .logos-grid {
        gap: 20px;
    }

    .network-logo {
        max-width: 100px;
    }

    .social-title {
        font-size: 24px;
    }

    .social-link {
        width: 70px;
        height: 70px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }
}
