
:root {
    --card: rgba(255, 255, 255, 0.92);
    --text: #111;
    --accent: #7c6cff;
    --bg-overlay: rgba(255, 255, 255, 0.35);
}

[data-theme="dark"] {
    --card: rgba(30, 41, 59, 0.85);
    --text: #ffffff;
    --accent: #8b5cf6;
    --bg-overlay: rgba(10, 15, 30, 0.35);
}

[data-theme="dark"] {
    --bg-overlay: rgba(10, 15, 30, 0.75);
}

[data-theme="dark"] header {
    background: rgba(30, 41, 59, 0.75);
}

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.2);

    border-radius: 20px;
    margin: 20px auto;
    padding: 30px 20px;
    max-width: 1100px;

    position: relative;
}

.tagline {
    margin-bottom: 10px;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
	opacity: 1;
}

.logo {
    position: absolute;
    right: 20px;
    top: 20px;
}

.logo img {
    width: 80px;
    border-radius: 15px;
}

/* MAIN CONTENT */
main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

/* CARD SYSTEM */
.card {
  background: rgba(20, 25, 40, 0.6);
    backdrop-filter: blur(12px);

    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15),
        0 20px 50px rgba(0,0,0,0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.25),
        0 30px 70px rgba(0,0,0,0.35);
}

/* GRID (for side-by-side sections) */
.grid {
    display: flex;
    gap: 30px;
}

.grid .card {
    flex: 1;
}

/* BUTTON */
.btn, button {
    padding: 10px 18px;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: white;
    font-weight: bold;
    cursor: pointer;

    transition: transform 0.1s ease, opacity 0.2s ease;
}

.btn:hover, button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn, #themeToggle {
    box-shadow: 0 0 12px rgba(124, 108, 255, 0.4);
}

/* FOOTER */
footer {
    background: var(--card);
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
}

/* DISABLED LINK */
.disabled {
    color: var(--text);
    text-decoration: none;
}
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
}

textarea {
    min-height: 120px;
}
body {
    color: var(--text);
	font-family: 'Parkinsans', monospace;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;

    background-image: url("../media/light-bg.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(1px) brightness(0.95);
    transform: scale(1.05); /* prevents edge clipping from blur */
}

header, .card, footer {
    background: var(--card);
    backdrop-filter: blur(10px);
}

nav a {
    color: var(--text);
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

h3 {
    margin-bottom: 10px;
}

p {
    opacity: 0.9;
}

.iframe-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

#themeToggle {
    position: absolute;
    top: 20px;
    right: 120px;

    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


[data-theme="dark"] body::before {
    background-image: url("../media/dark-bg.jpg");
    filter: blur(8px) brightness(0.6);
}

[data-theme="dark"] body::after {
    background: linear-gradient(
        to bottom,
        rgba(10,15,30,0.4),
        rgba(10,15,30,0.7)
    );
}

[data-theme="dark"] .card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(14px);
}

body {
    cursor: url("../media/cursor.png") 4 4, auto;
}

a, button, .btn, [role="button"] {
    cursor: url("../media/cursor-pointer.png") 12 2, pointer !important;
}

input, textarea {
    cursor: url("../media/pencil-cursor.png") 2 28, text;
}

footer a {
    color: var(--text);
    opacity: 0.7;
    text-decoration: none;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;

    background: var(--card);
    backdrop-filter: blur(12px);

    padding: 15px;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    z-index: 999;
}

.privacy-popup p {
    margin-bottom: 10px;
    font-size: 14px;
}

.privacy-popup button {
    width: 100%;
}

.hidden {
    display: none;
}
.team-filters {
    max-width: 800px;
    margin: 0 auto 25px auto; /* centers the whole block */
    display: flex;
    justify-content: center;
    gap: 25px;
}

.team-filters button {
    background: none;
    border: none;
    color: var(--text);
    font-weight: 500;
    opacity: 0.6;
    cursor: pointer;
    padding: 5px 10px;
}

.team-filters button.active {
    opacity: 1;
    border-bottom: 2px solid var(--accent);
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
	justify-items: center;
}
/* CARD */
.team-card {
background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 15px;
    text-align: left;
	   backdrop-filter: blur(10px);
	   display: flex;
	flex-direction: column;
	position: relative;
	    max-width: 320px;
    margin: 0 auto;
	max-width: 320px;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.team-card img {
    width: 100%;
    height: 325px;        
    object-fit: cover;    
    border-radius: 25px;
}

.team-card h3 {
    margin: 5px 0;
}

.team-card p {
    font-size: 14px;
    opacity: 0.8;
}
[data-theme="dark"] .team-card {
    background: rgba(30, 41, 59, 0.85);
}
.team-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* makes it responsive */
}

.team-mini-card {
    flex: 1;
    min-width: 250px;

  background: var(--card);
    backdrop-filter: blur(10px);

    border-radius: 15px;
    padding: 20px;
}
.team-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;

    font-size: 12px;
    font-weight: 600;

    border-radius: 999px; /* pill shape */

    background: var(--accent);
    color: white;

    opacity: 0.9;
}
.team-card .badge {
    align-self: flex-start;
	 position: absolute;
    bottom: 15px;
    right: 15px;
}
.team-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* ICON BUTTON */
.icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);

    transition: all 0.2s ease;
}

/* ICON IMAGE */
.icon img {
    width: 18px;
    height: 18px;
}

/* HOVER EFFECT */
.icon:hover {
    transform: translateY(-2px);
    background: var(--accent);
}
[data-theme="dark"] .icon {
    background: rgba(255,255,255,0.05);
}
.icon.github:hover {
    background: #333;
}

.icon.website:hover {
    background: var(--accent);
}
.icon svg {
    width: 18px;
    height: 18px;
    fill: var(--text);
}

.icon:hover svg {
    fill: white;
}
.profile-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}
.team-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 40px;
    width: 100%;

    background: transparent;
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    color: white;
}

.logo-text span {
    color: var(--accent);
}

/* CENTER NAV */
.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    position: relative;
    transition: 0.2s;
}

.nav-center a:hover {
    color: white;
}

/* ACTIVE LINK UNDERLINE */
.nav-center a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 40px;
    border-radius: 10px;
}
/* HERO */
.hero {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 40px auto;
    max-width: 1100px;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-left p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--accent);
}


/* PLAYER SIDE */
.hero-right {
    flex: 1;
}


/* GRID */
.home-grid {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.left-column,
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.hero-bg {
    width: 100%;
    border-radius: 20px;
    opacity: 0.3;
}
.iframe-wrap {
    width: 100%;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
}

.iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-wrap.tall {
    height: 400px;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 80% 20%, rgba(124,108,255,0.25), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255,0,150,0.15), transparent 50%);

    animation: glowMove 20s infinite alternate ease-in-out;
}
@keyframes glowMove {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.05) translate(-20px, 20px);
    }
}

.now-playing-card {
    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(14px);

    padding: 20px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.song-cover {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
}

.song-info {
    flex: 1;
}

.song-title {
    font-size: 20px;
    font-weight: 600;
}

.song-artist {
    opacity: 0.7;
    margin-bottom: 10px;
}

.player-controls iframe {
    width: 100%;
    height: 120px; 
    border: none;
    border-radius: 12px;

    overflow: hidden;
}
.recently-played-card {
    background: rgba(20, 25, 40, 0.8);
    backdrop-filter: blur(16px);

    border-radius: 20px;
    padding: 20px;
}

.iframe-wrap.tall {
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
}

.player-controls {
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    padding: 10px;
}

.now-playing-card img {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    object-fit: cover;
}

#np-title {
    font-size: 18px;
    font-weight: 600;
}

#np-artist {
    font-size: 14px;
    opacity: 0.7;
}
.global-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(20, 25, 40, 0.9);
    backdrop-filter: blur(15px);

    padding: 12px 20px;
    border-radius: 999px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.5);

    z-index: 9999;
}

.global-player img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.gp-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

#gp-title {
    font-weight: 600;
}

#gp-play {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
.secondary-card {
    background: rgba(20, 25, 40, 0.4);
}
/* LIGHT SECTIONS (no box feel) */
.section {
    padding: 10px 0;
    margin-bottom: 20px;
}

/* KEEP ONLY IMPORTANT CARDS STRONG */
.player-card {
    background: rgba(20, 25, 40, 0.75);
    backdrop-filter: blur(16px);

    padding: 20px;
    border-radius: 20px;

    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

/* OPTIONAL: soften remaining cards */
.card {
    background: rgba(20, 25, 40, 0.4);
    backdrop-filter: blur(10px);
}
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    transition: 0.2s;
}

.recent-item:hover {
    background: rgba(255,255,255,0.1);
}

.recent-item img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.song-title {
    font-size: 14px;
    font-weight: 600;
}

.song-artist {
    font-size: 12px;
    opacity: 0.7;
}
.song-time {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 2px;
}
/* NEWS PAGE */
.news-container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-card {
    background: rgba(20, 25, 40, 0.85);
    backdrop-filter: blur(12px);

    padding: 20px;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.news-date {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 5px;
}
/* IMPORTANT TAG */
.tag-important {
    display: inline-block;
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
    color: white;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;

    padding: 4px 8px;
    border-radius: 6px;

    margin-bottom: 8px;

    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}