/* (c) Ibiza.fm - Ibiza Beach TV */
/* This JS script may not be copied, published, rewritten, or redistributed */


/* Universal Legal & Links Style */

:root {
    --pink: #ec4899;
    --blue: #3b82f6;
    --dark-bg: #000000;
    --card-bg: #0a0a0a;
    --text-main: #dddddd;
    --text-muted: #888888;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.policy-container, .terms-container, .links-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.links-container {
    max-width: 600px;
}

h1 {
    text-align: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

h2 {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

strong {
    color: #fff;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 480px) {
    .grid { grid-template-columns: 1fr 1fr; }
}

.link-card {
    background: var(--card-bg);
    border: 1px solid #222;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
}

.link-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}

.link-card .site-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.link-card .description {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 1. Let's define the structure of the toolbar for Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--pink), var(--blue)) !important;
    border-radius: 10px;   
    /* The Neon light effect (Glow) */
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
    /* A small border to give definition */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mouseover effect */
::-webkit-scrollbar-thumb:hover {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.8);
}
