/* (c) Ibiza.fm - Ibiza Beach TV */
/* This JS script may not be copied, published, rewritten, or redistributed */


:root {
 --pink-500: #ec4899;
 --blue-500: #3b82f6;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background-color: rgba(10, 1, 24, 0.9);
	color: white;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

 body::before, body::after {
 content: '';
 position: fixed;
 top: -10%;
 left: -10%;
 width: 120%;
 height: 120%;
 background-size: cover;
 background-position: center;
 z-index: -1;
 filter: contrast(1.2);
 transform: translate(0, 0) scale(1.05);
 animation: background-pan 95s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
 transition: opacity 2s ease-in-out;
 pointer-events: none;
 will-change: transform;
}

 body::before {
 background-image: var(--bg-before);
    opacity: var(--bg-before-opacity, 0);
}

 body::after {
 background-image: var(--bg-after);
 opacity: var(--bg-after-opacity, 0);
}
 @keyframes background-pan {
 0% {
transform: translate(0%, 0%) scale(1.05);
}
 50% {
transform: translate(-10%, -10%) scale(1.1);
}
 100% {
transform: translate(0%, 0%) scale(1.05);
}
}


nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	min-height: 80px;
}
.nav-left {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: white;
}
.logo svg {
	width: 24px;
	height: 24px;
	fill: var(--pink-500);
}
.nav-links {
	display: flex;
	gap: 1.5rem;
}
.nav-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
}
.nav-links a:hover {
	color: white;
}
.nav-right {
	display: flex;
	align-items: center;
	margin-top:-10px;
	gap: 1rem;
}


.btn {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s;
}
.btn-primary {
	background-color: var(--pink-500);
	color: white;
}
.btn-primary:hover {
	background-color: #d53f8c;
}


main {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-top: 35px;
	margin-bottom: 35px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
}
.hero-title {
	font-size: clamp(1.8rem, 8vw, 3.5rem);
	font-weight: bold;
	line-height: 1.1;
}
.hero-title span {
	color: var(--pink-500);
}
.hero-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.25rem;
	max-width: 32rem;
	min-height: 3em;
}


.store-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.store-button {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	text-decoration: none;
	transition: background-color 0.3s, transform 0.1s;
	background-color: rgba(255, 255, 255, 0.05);
}
.store-button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: scale(1.02);
}
.store-button svg {
	width: 32px;
	height: 32px;
}
.store-button .button-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.store-button .small {
	font-size: 0.65rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}
.store-button .large {
	font-size: 1rem;
	font-weight: 600;
}
.app-store svg {
	fill: white;
}
.google-play svg {
	fill: white;
}


.player-container {
	position: relative;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	border-radius: 1rem;
	overflow: hidden;
}
 .player-container::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(59, 130, 246, 0.3));
 filter: blur(100px);
 z-index: -1;
}
.player-header {
	display: flex;
	align-items: left;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.album-art {
	width: 80px;
	height: 80px;
	border-radius: 0.5rem;
	object-fit: cover;
	animation: album-pulse 3s ease-in-out infinite;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	will-change: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.album-art:hover {
	transform: scale(1.1);
}
 @keyframes album-pulse {
 0%, 100% {
 transform: scale(1);
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
 50% {
 transform: scale(1.05);
 box-shadow: 0 8px 12px rgba(236, 72, 153, 0.2);
}
}
.track-info {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	text-align: left !important;
    width: 100% !important;
	max-width: calc(100vw - 120px) !important;
	overflow: hidden !important;
	flex: 1;
	min-width: 0;
}
.track-info h3 {
	font-weight: 500;
	margin-bottom: 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
	display: block;
	position: relative;
}
.track-info h3.is-scrolling {
	-webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
	mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.track-info h3 span {
	display: inline-block;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	will-change: transform;
}
.track-info h3.is-scrolling span {
	display: inline-block;
    animation: tuneInMarquee 55s linear infinite;
	will-change: transform;
	-webkit-transform: translate3d(0, 0, 0);
}
 @keyframes tuneInMarquee {
    0% {
transform: translateX(0);
}
 15% {
transform: translateX(0);
}
    55% {
transform: translateX(var(--scroll-distance));
}
    95% {
transform: translateX(0);
}
    100% {
transform: translateX(0);
}
}
.track-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
    white-space: nowrap;       
	overflow: hidden;         
	text-overflow: ellipsis;   
	display: block;            
	max-width: 100%;          
}
.progress-bar {
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	margin: 1rem 0;
	overflow: hidden;
}
.progress {
	height: 100%;
	background: var(--pink-500);
	width: 0;
	transition: width 0.1s linear;
}
.controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.control-button {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: color 0.3s;
}
.control-button:hover {
	color: white;
}
.play-button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--pink-500);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
	will-change: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.play-button:hover {
	background-color: #d53f8c;
}
.social-links {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.social-icon {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s, transform 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.social-icon:hover {
	color: white;
	transform: scale(1.2) rotate(360deg);
}
.volume-control {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.volume-percentage {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	width: 40px;
	text-align: right;
}
.volume-slider {
	width: 100px;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
	opacity: 0.7;
	transition: opacity 0.2s;
	border-radius: 5px;
	height: 5px;
}
.volume-slider:hover {
	opacity: 1;
}
 .volume-slider::-webkit-slider-thumb {
 -webkit-appearance: none;
 appearance: none;
 width: 15px;
 height: 15px;
 background: var(--pink-500);
 cursor: pointer;
 border-radius: 50%;
}
 .volume-slider::-moz-range-thumb {
 width: 15px;
 height: 15px;
 background: var(--pink-500);
 cursor: pointer;
 border-radius: 50%;
}
 input[type="range"]::-webkit-slider-thumb {
 -webkit-appearance: none;
 appearance: none;
 width: 18px;
 height: 18px;
 background: var(--pink-500);
 border-radius: 50%;
 cursor: pointer;
 border: none;
}
button {
	-webkit-appearance: none;
	appearance: none;
}
.btn-share {
	background: none;
	color: rgba(255, 255, 255, 0.7);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: color 0.3s;
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
}
.btn-share:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
}
.btn-share svg {
	width: 20px;
	height: 20px;
	stroke: var(--pink-500);
	transition: transform 0.3s;
}
.btn-share:hover svg {
	transform: rotate(45deg);
}
.share-text {
	font-size: 0.875rem;
	display: none;
}
 @media (min-width: 768px) {
 .share-text {
 display: inline-block;
}
}
.stream-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	margin: 1rem 0;
}
.live-indicator {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
}
.live-dot {
	width: 8px;
	height: 8px;
	background-color: #ef4444;
	border-radius: 50%;
	opacity: 0.2; /* default stop */
	transition: opacity 0.5s ease;
}
.live-dot.blinking {
	animation: pulse-red 2s infinite;
	opacity: 1;
}
 @keyframes pulse-red {
 0%, 100% {
transform: scale(1);
opacity: 1;
}
 50% {
transform: scale(1.3);
opacity: 0.6;
}
}
.listener-count {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.listener-count svg {
	width: 16px;
	height: 16px;
	color: var(--pink-500);
}
 @keyframes pulse-red {
 0%, 100% {
 opacity: 1;
 transform: scale(1);
}
 50% {
 opacity: 0.5;
 transform: scale(1.2);
}


}
 @media (max-width: 1024px) {
 main {
 grid-template-columns: 1fr;
 text-align: center;
}
 .hero-content {
 align-items: center;
}
 .store-buttons {
 justify-content: center;
}
 .social-links {
 justify-content: center;
}
}
.ios-device {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
}
 @supports (-webkit-touch-callout: none) {
 .album-art, .social-icon, .play-button, .program-art {
 will-change: transform;
 -webkit-transform: translateZ(0);
 transform: translateZ(0);
}
 .footer-social-links .social-icon:hover {
 transform: translateY(-5px) scale(1.1);
 -webkit-transform: translateY(-5px) scale(1.1);
}
}
.pwa-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease-in-out;
}
.pwa-modal-content {
	background-color: rgba(30, 10, 60, 0.9);
	margin: 15% auto;
	padding: 2rem;
	border-radius: 1rem;
	max-width: 500px;
	text-align: center;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: white;
	transform: scale(0.9);
	animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
.pwa-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 15px;
	transition: color 0.3s;
}
.pwa-modal-close:hover {
	color: white;
}
.pwa-modal-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1rem;
}
.pwa-modal-logo {
	width: 100px;
	height: 100px;
	margin-bottom: 1rem;
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.pwa-install-btn {
	background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 1rem;
	transition: transform 0.3s, box-shadow 0.3s;
}
.pwa-install-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


 @keyframes fadeIn {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes popIn {
 from {
 opacity: 0;
 transform: scale(0.6);
}
to {
	opacity: 1;
	transform: scale(1);
}
}


.site-footer {
	overflow: visible !important;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.8);
	padding: 3rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}
 .site-footer::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(59, 130, 246, 0.05));
 z-index: -1;
}
.footer-container {
	max-width: 1145px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
	padding-top: 40px;
	padding-bottom: 30px;
}
.footer-column h4 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	position: relative;
	padding-bottom: 0.5rem;
}
 .footer-column h4::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 30px;
 height: 2px;
 background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
 transition: width 0.3s ease;
}
 .footer-column:hover h4::after {
 width: 100%;
}
.footer-column ul {
	list-style: none;
	padding: 0;
}
.footer-column ul li {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 1.5rem;
	cursor: default;
}
.footer-column ul li svg {
	color: var(--pink-500);
	width: 24px;
	height: 24px;
	min-width: 24px;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 3px rgba(236, 72, 153, 0.2));
	position: absolute;
	left: 0;
}
.footer-column ul li:hover svg {
	transform: scale(1.2) rotate(5deg);
	color: var(--blue-500);
	filter: drop-shadow(0 3px 5px rgba(59, 130, 246, 0.3));
}
 .footer-column:nth-child(3) ul li {
 padding-left: 2rem;
 position: relative;
 overflow: hidden;
 background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
 border-radius: 0.5rem;
 padding: 0.75rem 1rem 0.75rem 2rem;
}
 .footer-column:nth-child(3) ul li::before {
 content: '';
 position: absolute;
 left: 0.5rem;
 opacity: 0;
 transition: all 0.3s ease;
}
 .footer-column:nth-child(3) ul li:hover {
 transform: translateX(5px);
 background: linear-gradient(90deg, rgba(236, 72, 153, 0.1), transparent);
}
 .footer-column:nth-child(3) ul li::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 100%;
 height: 1px;
 background: linear-gradient(90deg, var(--pink-500), transparent);
 opacity: 0;
 transition: opacity 0.3s ease;
}
 .footer-column:nth-child(3) ul li:hover::after {
 opacity: 0.3;
}
.footer-column ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	overflow: hidden;
}
 .footer-column ul li a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 1px;
 background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
 transform: translateX(-100%);
 transition: transform 0.3s ease;
}
.footer-column ul li a:hover {
	color: white;
}
 .footer-column ul li a:hover::after {
 transform: translateX(0);
}
 .footer-column:nth-child(2) ul li {
 position: relative;
 padding-left: 32px;
 transition: transform 0.3s ease;
}
 .footer-column:nth-child(2) ul li:hover {
 transform: translateX(5px);
}
 .footer-column:nth-child(2) ul li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 50%;
 width: 24px;
 height: 24px;
 background: rgba(236, 72, 153, 0.1);
 border-radius: 50%;
 transform: translateY(-50%) scale(0);
 transition: transform 0.3s ease;
 z-index: -1;
}
 .footer-column:nth-child(2) ul li:hover::before {
 transform: translateY(-50%) scale(1.5);
}
.footer-social-links {
	display: flex;
	gap: 1.5rem;
	margin-top: 1rem;
}
.footer-social-links .social-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	will-change: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
 .footer-social-links .social-icon::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
 opacity: 0;
 transition: opacity 0.3s ease;
 z-index: 0;
}
.footer-social-links .social-icon svg {
	width: 24px;
	height: 24px;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}
.footer-social-links .social-icon:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
 .footer-social-links .social-icon:hover::before {
 opacity: 1;
}
.footer-social-links .social-icon:hover svg {
	color: white;
	transform: scale(1.1);
}
.footer-social-links .social-icon:active {
	transform: translateY(-2px) scale(0.95);
}
 .footer-social-links .social-icon::after {
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle at center, var(--pink-500) 0%, transparent 70%);
 opacity: 0;
 transition: opacity 0.3s ease;
 z-index: -1;
 filter: blur(15px);
}
 .footer-social-links .social-icon:hover::after {
 opacity: 0.15;
}
 @media (max-width: 768px) {
 .footer-social-links {
 justify-content: center;
 gap: 1rem;
}
 .footer-social-links .social-icon {
 width: 38px;
 height: 38px;
}
 .footer-social-links .social-icon svg {
 width: 20px;
 height: 20px;
}
}
 @media (max-width: 480px) {
 .footer-social-links {
 gap: 0.75rem;
}
 .footer-social-links .social-icon {
 width: 36px;
 height: 36px;
 border-radius: 10px;
}
 .footer-social-links .social-icon svg {
 width: 18px;
 height: 18px;
}
}
.footer-column p {
	line-height: 1.6;
	position: relative;
	padding-left: 0;
	transition: padding-left 0.3s ease;
}
.footer-column:hover p {
	padding-left: 10px;
}
.footer-bottom {
	text-align: center;
	padding: 2rem 0; 
	margin-top: 2rem;
	font-size: 13px;
	color: #666666;
	position: relative;
	width: 100% !important; 
	box-sizing: border-box;
}
.footer-bottom a {
	color: #888888;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 400;
}
.footer-bottom a:hover {
	color: var(--pink-500);
	text-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}
.footer-bottom p {
	position: relative;
	display: block !important; 
	margin: 0;
	padding: 0 0px; 
	width: 100%;
	box-sizing: border-box;
}
.footer-bottom p::before, .footer-bottom p::after {
 display: none !important;
}
.footer-info-grid {
	display: flex;
    justify-content: flex-start;
	align-items: center;
	gap: 2rem;
	width: 100%;
	margin-top: 2rem;
	padding: 0;
	box-sizing: border-box;
}
.footer-info-grid .footer-info-item:first-child {
    flex: 0 0 auto;
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	text-align: left;
	max-width: 50%;
}
.footer-info-grid .footer-info-item:last-child {
	flex: 1; 
	display: flex;
	justify-content: center; 
	align-items: center;
	overflow: hidden;
	min-width: 0; 
}
.footer-partners-slider {
	width: 100%;
	max-width: 400px; 
	overflow: hidden;
	position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.partners-track {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	will-change: transform;
	animation: scroll-partners 25s linear infinite;
}
@keyframes scroll-partners {
 0% {
transform: translateX(0);
}
 100% {
transform: translateX(-50%);
}
}
.license-number {
	color: #999999;
}
 @media (max-width: 768px) {
 .footer-container {
 grid-template-columns: 1fr 1fr;
}
 .footer-column h4::after {
 width: 50px;
}
}
 @media (max-width: 480px) {
 .footer-container {
 grid-template-columns: 1fr;
}
 .footer-column {
 padding-bottom: 1.5rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .footer-column:last-child {
 border-bottom: none;
}
 .footer-social-links {
 justify-content: center;
}
}


.program-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	width: 100%;
	height: 80px;
	max-height: 80px;
	background: linear-gradient(90deg, rgba(236, 72, 153, 0.1), transparent);
	overflow: hidden;
	box-sizing: border-box;
	transition: all 0.3s ease-in-out;
}
.program-art {
	width: 60px;
	height: 60px;
	min-width: 60px;
	border-radius: 0.5rem;
	object-fit: cover;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.program-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.25rem;
	overflow: hidden;
	flex-grow: 1;
}
.program-title {
	font-weight: 600;
	color: white;
	font-size: 0.95rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.program-time {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.program-info:hover .program-art {
	transform: scale(1.1) rotate(2deg);
}
 @media (max-width: 480px) {
 .program-info {
 height: 70px;
 max-height: 70px;
 padding: 0.5rem;
 gap: 0.75rem;
}
 .program-art {
 width: 50px;
 height: 50px;
 min-width: 50px;
}
 .program-title {
 font-size: 0.85rem;
}
 .program-time {
 font-size: 0.75rem;
}
}
 @keyframes fadeInOut {
 0%, 85% {
 opacity: 1;
}
 90%, 100% {
 opacity: 0;
}
}
 @media (max-width: 768px) {
 .program-info {
 padding: 0.5rem;
}
 .program-art {
 width: 50px;
 height: 50px;
}
 .program-title {
 font-size: 0.85rem;
}
 .program-time {
 font-size: 0.75rem;
}
}
 .footer-column:nth-child(3) ul li:first-child {
 transition: opacity 0.3s ease-in-out;
 position: relative;
 overflow: hidden;
 background: rgba(255, 255, 255, 0.03);
 border-radius: 1rem;
 padding: 0;
 min-height: 80px;
 opacity: 1;
}
 .footer-column:nth-child(3) ul li:first-child.fade-out {
 opacity: 0;
}
 .footer-column:nth-child(3) ul li:not(:first-child) {
 display: none;
}
 @supports (-webkit-touch-callout: none) {
 .album-art, .social-icon, .play-button, .program-art {
 will-change: transform;
 -webkit-transform: translateZ(0);
 transform: translateZ(0);
}
 .footer-social-links .social-icon:hover {
 transform: translateY(-5px) scale(1.1);
 -webkit-transform: translateY(-5px) scale(1.1);
}
}
* {
	user-select: none;
}
*::selection {
 background: none;
}
*::-moz-selection {
 background: none;
}
.program-timeline-bar {
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	margin-top: 10px;
	overflow: hidden;
	position: relative;
}
#program-progress-fill {
	height: 100%;
	width: 0%; 
	background: linear-gradient(90deg, #ff0080, #00bfff); 
	box-shadow: 0 0 10px rgba(255, 0, 128, 0.5); 
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
	border-radius: 10px;
}


.media-zone {
	position: relative !important;
	width: 100vw !important;
	left: 50% !important;
	right: 50% !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
    padding: 100px 0 60px !important;
    margin-top: 50px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	background-color: transparent;
	z-index: 1;
}
.rtp-ad-container {
	display: inline-block; 
	position: relative;
	text-align: center;  
	margin: 10px 0;      
}
.rtp-signature {
	text-align: right;     
	font-family: Arial, sans-serif;
	font-size: 10px;     
	color: #999;          
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 6px;      
	line-height: 12px;
}
.rtp-ad-container img {
	max-width: 100%;
	height: auto;
	display: block;   
}


#news-section {
	position: relative !important;
    width: 100vw !important;
	left: 50% !important;
	right: 50% !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	padding: 60px 0 !important;
	margin-top: 40px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1;
}
#news-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(59, 130, 246, 0.05));
 z-index: -1;
 pointer-events: none;
}
.news-container {
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding: 40px 20px !important;
	position: relative;
	z-index: 10;
}
.news-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
	gap: 25px !important;
}
.news-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.news-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
}
.news-cover-min {
	width: calc(100% + 50px);
	height: 180px;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
	margin: -25px -25px 15px -25px;
}
.news-category-badge {
	position: relative;
	display: inline-block;
	padding: 2px 12px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
	background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
}
 .news-category-badge::before {
 content: "";
 position: absolute;
 inset: 0;
 border-radius: 50px;
 padding: 1.5px;
 background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
 -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
}
.news-card h3 {
	margin: 10px 0 12px 0;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1.3;
}
.news-card p {
	color: #bbb;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 10px;
}
.read-more-wrapper {
	margin-top: auto;
	padding-top: 15px;
}
.read-more-link {
	font-size: 0.9rem;
	font-weight: bold;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
}
.pagination-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	gap: 20px;
}
.btn-news {
	background: white;
	color: black;
	border: none;
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.75rem;
	cursor: pointer;
	transition: 0.3s;
}
 .btn-news:hover:not(:disabled) {
 background: #00f2ff !important;
 color: #000 !important;
 transform: scale(1.05);
}
.btn-news:disabled {
	opacity: 0.2;
	cursor: not-allowed;
}
.news-full-content {
	max-width: 800px;
	margin: 0 auto;
	animation: fadeIn 0.6s ease-out;
	padding-bottom: 60px;
}
.news-cover-full {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.article-body {
	line-height: 1.8;
	color: #ddd;
	font-size: 1.1rem;
	text-align: justify;
}
.article-body p {
	margin-bottom: 1.5rem !important; 
}
.article-body h2, .article-body h3 {
	margin: 2rem 0 1rem 0 !important;
	color: #fff;
}
.article-body ul, .article-body ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}
 @keyframes fadeIn {
 from {
opacity: 0;
transform: translateY(20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9); 
	backdrop-filter: blur(8px);
	display: none; 
	justify-content: center;
	align-items: center;
	z-index: 99999; 
}
.modal-content {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 90%;
	max-width: 900px;
	border-radius: 20px;
	position: relative;
	padding: 20px;
}
.close-modal {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: white;
	font-size: 35px;
	cursor: pointer;
}
.iframe-container {
	position: relative;
	width: 100%;
	height: 70vh;
	background: white;
	border-radius: 15px;
	overflow: hidden;
}
.loader-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #333;
	font-weight: bold;
}
 .modal-content::-webkit-scrollbar {
 width: 6px;
}
 .modal-content::-webkit-scrollbar-track {
 background: #000;
}
 .modal-content::-webkit-scrollbar-thumb {
 background: linear-gradient(to bottom, var(--pink-500), var(--blue-500));
 border-radius: 10px;
 box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}
iframe::-webkit-scrollbar {
 width: 6px;
}


html, body {
	max-width: 100vw;
	overflow-x: hidden !important;
}


#cookie-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
    opacity: 0;
	transition: opacity 0.4s ease;
}
.cookie-card {
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 40px;
	border-radius: 24px;
	max-width: 420px; 
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.cookie-card h2 {
	color: #fff;
	margin-bottom: 15px;
	font-family: 'Inter', sans-serif;
}
.cookie-card p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 30px;
}
.cookie-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
}
.btn-accept {
	background: #ec4899;
	color: white;
	border: none;
	padding: 12px 0;
	border-radius: 30px;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.3s ease;
	flex: 1;
}
.btn-accept:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}
.btn-reject {
	background: transparent;
	color: #888;
	border: 1px solid #444;
	padding: 12px 0;
	border-radius: 30px;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.3s ease;
	flex: 1;
}
.btn-reject:hover {
	border-color: #888;
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}
.privacy-link:link, .privacy-link:visited {
	color: #888888;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 400;
}
.privacy-link:hover {
	color: #ec4899;
	text-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
	text-decoration: none;
}


.ibiza-weather {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	opacity: 0.8;
	margin-top: 12px;
	padding-left: 2px;
	color: white;
}
.weather-main {
	display: flex;
	align-items: center;
	gap: 4px;
}
#weather-icon {
	font-size: 14px;
}
.weather-separator {
	opacity: 0.2;
}
.wind-unit {
	font-size: 9px;
}
.weather-item {
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
}
#ibiza-sunset {
	font-weight: 500;
	color: #ffffff;
	margin-left: 4px;
}


.track-info div[style*="justify-content: space-between"] {
 align-self: stretch !important;
 display: flex !important;
}
@-webkit-keyframes bufferingBlink {
 0% {
opacity: 1;
}
 50% {
opacity: 0.3;
}
 100% {
opacity: 1;
}
}
 @keyframes bufferingBlink {
 0% {
opacity: 1;
}
 50% {
opacity: 0.3;
}
 100% {
opacity: 1;
}
}
.buffering-blink {
	-webkit-animation: bufferingBlink 0.8s infinite ease-in-out !important;
	animation: bufferingBlink 0.8s infinite ease-in-out !important;
}


.footer-partners-slider {
	width: 300px;
    margin-left: auto !important;
	margin-right: 40px !important;
	overflow: hidden;
	position: relative;
	clear: both; 
    -webkit-mask-image: linear-gradient(  to right,  transparent 0%,  black 15%,  black 85%,  transparent 100%  );
	mask-image: linear-gradient(  to right,  transparent 0%,  black 15%,  black 85%,  transparent 100%  );
}
.partners-track {
	display: flex;
	align-items: center;
	gap: 0px;
	width: max-content;
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.partner-logo {
	flex: 0 0 auto;
	width: 230px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.partner-logo img {
	height: 80px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.7;
}
@media (hover: hover) {
 .partner-logo:hover img {
 filter: grayscale(0%) brightness(1);
 opacity: 1;
}
}
.store-mobile {
	display: none !important;
}


#quality-area.quality-control-wrapper {
	display: flex !important;
	align-items: center;
	gap: 10px;
	margin: 0 !important; 
	height: 32px !important;
}
.quality-label, .quality-label-hd {
	font-size: 11px; 
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	font-family: sans-serif;
	line-height: 1;
}
.label-low {
	color: rgba(255, 255, 255, 0.4);
}
#quality-area:not(:has(input:checked)) .label-low {
 color: rgba(255, 255, 255, 0.9);
}
.quality-label-hd {
	background: none;
	color: rgba(255, 255, 255, 0.4);
	-webkit-text-fill-color: initial;
}
#quality-area:has(input:checked) .quality-label-hd {
 background: linear-gradient(135deg, #ec4899, #3b82f6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 font-weight: bold;
}
.switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.1);
 transition: .4s;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.slider:before {
	position: absolute;
	content: "";
	height: 14px;
	width: 14px;
	left: 3px;
	bottom: 2px;
	background-color: white;
 transition: .4s;
}
input:checked + .slider {
	background-color: #ec4899;
	box-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}
input:checked + .slider:before {
	transform: translateX(20px);
}
.slider.round {
	border-radius: 20px;
}
.slider.round:before {
	border-radius: 50%;
}
@keyframes superFadeIn {
 from {
 opacity: 0;
 transform: translateY(50px);
 filter: blur(15px) brightness(1.2);
}
to {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0) brightness(1);
}
}

.fade-in-effect {
    animation: superFadeIn 1.2s cubic-bezier(0.15, 0.85, 0.35, 1) forwards !important;
}


#radio-ui, #video-ui {
	transition: opacity 0.3s ease-in-out;
	width: 100%;
}
#hls-video {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	display: block;
	outline: none;
}
.hybrid-footer {
	display: flex !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	width: 100%;
	margin-top: 35px;
	padding: 40px 0 0;
	box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#view-mode-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center;
	width: auto;
	padding: 0 18px !important;
	font-size: 11px;
	height: 32px !important;
	min-height: 32px !important;
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s;
	font-weight: 600;
	letter-spacing: 0.8px;
	margin: 0 !important;
	line-height: 1 !important;
	vertical-align: bottom;
}
#view-mode-button svg {
	margin-right: 8px;
	flex-shrink: 0;
}
#view-mode-button:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
}
#view-mode-button.active-video {
	background: #ec4899 !important;
	border-color: #ec4899;
	box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
	color: #ffffff;
}
.airplay-hint {
	color: rgba(255, 255, 255, 0.35);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	text-align: center;
	margin-top: 12px;
	font-weight: 300;
}
#quality-area {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	height: 32px !important;
	padding: 0 !important;
}
#quality-area .quality-label, #quality-area .quality-label-hd {
	font-size: 10px;
	text-transform: uppercase;
	line-height: 1;
}
#quality-area .label-low {
	opacity: 0.6;
}
#quality-area .quality-label-hd {
	font-weight: bold;
}
#quality-area .switch {
	margin: 0 !important;
	display: flex !important;
	align-items: center;
}


html body #stream-status-bar {
    display: block !important; 
    width: 100%;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    z-index: 999999 !important; 
    position: relative !important;
    box-sizing: border-box;
    max-height: 0;
    opacity: 0;
    padding: 0 !important;
    overflow: hidden;
    border-bottom: 0px solid transparent;
    visibility: hidden; 
    transition: max-height 1.5s ease-in-out, opacity 1s ease-in-out, padding 1.5s ease-in-out, visibility 1.5s;
}
html body #stream-status-bar.show-notice {
    max-height: 200px !important; 
    opacity: 1 !important;
    padding: 15px 0 !important;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    visibility: visible;
}
.status-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.status-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 4s linear infinite;
    font-size: 18px;
    color: white !important;
    filter: brightness(0) invert(1);
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
    margin-top: 0px; 
    line-height: 1;
}
.status-text {
    display: inline-block;
    line-height: 1.4;
    text-align: left; 
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.status-text {
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}


@media screen and (max-width: 1024px) {
 .volume-control, .store-buttons, .hide-mobile {
 display: none !important;
}
 .player-header {
margin-top: 25px !important;
}
 .track-info {
 display: flex !important;
 flex-direction: column !important;
 align-items: flex-start !important;
 text-align: left !important;
 width: 100% !important;
 padding: 0 !important;
}
 .progress-bar {
margin-top: 55px !important;
}
 .controls {
 display: flex !important;
 justify-content: center !important;
 align-items: center !important;
 gap: 30px !important;
 margin: 50px 0 !important;
 width: 100% !important;
}
 .controls .control-button {
transform: scale(1.5) !important;
}
 .quality-control {
 padding-top: 30px;
 margin-bottom: 35px;
}
 .store-mobile {
 display: flex !important;
 flex-direction: column !important;
 justify-content: flex-start !important;
 align-items: flex-start !important;
 gap: 12px;
 width: 100%;
 margin: 4rem 0 2rem 0;
}
 .store-text {
 display: block;
 font-size: 13px;
 text-align: left;
 color: #666666;
 margin-bottom: 25px;
 margin-top: 10px;
}
 .store-button {
 display: flex !important;
 align-items: center;
 text-align:left;
 background: rgba(255, 255, 255, 0.1);
 border: 1px solid rgba(255, 255, 255, 0.2);
 border-radius: 12px;
 width: 100%;
 max-width: 190px;
 padding: 12px 20px;
 transition: transform 0.2s ease;
 text-decoration: none !important;
}


 .footer-info-grid {
 display: flex !important;
 flex-direction: column !important;
 align-items: flex-start !important;
 gap: 2.5rem;
 text-align: left !important;
 width: 100% !important;
 max-width: 100% !important;
}
 .footer-info-item {
 display: block !important;
 width: 100% !important;
 min-width: 100% !important; 
 flex-basis: 100% !important; 
 box-sizing: border-box !important;
 font-size:13px !important;
 -webkit-text-size-adjust: 100% !important;
 text-size-adjust: 100% !important;
}
.footer-partners-slider {
 width: 100% !important;
 overflow: hidden;
 position: relative;
 padding-top: 30px;
 display: flex !important;
 justify-content: flex-start !important;
 -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
 mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
 .partners-track {
 display: flex !important;
 justify-content: flex-start !important;
 align-items: center;
 gap: 15px;
 width: max-content;
 margin-left: 0 !important;
 margin-right: auto !important;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
 will-change: transform;
}
 .partner-logo {
 flex: 0 0 auto;
 width: 230px !important;
 height: 80px;
 margin: 0 !important;
}
 .partner-logo img {
 height: 80px !important;
 width: auto !important;
 -webkit-user-select: none;
 pointer-events: none;
}


 .ibiza-weather {
display: flex !important;
justify-content: center !important;
margin-top: 20px !important;
}


 .footer-social-links {
 display: flex !important;
 justify-content: flex-start !important;
 gap: 8px !important;
 width: 100% !important;
 transform: scale(1.2);
 transform-origin: left;
}
}
 @media screen and (max-width: 1024px) and (orientation: landscape) {
 .footer-partners-slider, .partners-track {
 justify-content: flex-start !important;
 margin-left: 0 !important;
}
}
