/* =========================================
   Variables & Common Styles
   ========================================= */
:root {
    --color-primary: #00D4FF;
    /* Fallback */
    --color-secondary: #FF6B6B;
    /* Fallback */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Pacifico', cursive;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Icons */
:where([class^="ri-"])::before {
    content: "\f3c2";
}

/* Utilities */
.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-glow {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.2);
}

.neon-text {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.4);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 6rem 0;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.floating-animation {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 40px var(--color-secondary, #FF6B6B);
    }
}

.hologram-effect {
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    animation: hologram 3s linear infinite;
}

@keyframes hologram {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.cyber-grid {
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 212, 255, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

/* =========================================
   Components (Extracted from index.php)
   ========================================= */

/* Buttons */
.btn {
    padding: 1.25rem 2.5rem;
    /* py-5 px-10 */
    font-weight: 700;
    border-radius: 8px;
    /* !rounded-button */
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    color: white;
}

.btn-primary:hover {
    transform: scale(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    /* glass-morphism base */
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-card {
    width: 100%;
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid;
    /* color diff per card */
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 107, 107, 0.1) 50%, rgba(138, 43, 226, 0.15) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.8));
}

.hero-title {
    font-size: 3rem;
    /* text-5xl */
    font-weight: 900;
    /* font-black */
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
        /* text-8xl */
    }
}

.hero-subtitle {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 3.75rem;
        /* text-6xl */
    }
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.625;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Section Common */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Artist Cards */
.artist-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    /* p-8 */
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.artist-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    transform: translateY(-15px) scale(1.02);
}

.hexagon {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.artist-role {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.artist-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

/* Streaming Platforms */
.streaming-platform {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    /* p-6 */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.streaming-platform:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
}

/* News */
.news-timeline {
    position: relative;
    padding-left: 3rem;
}

.news-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), #8A2BE2);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.news-item {
    position: relative;
    margin-bottom: 2rem;
}

.news-date {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.news-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    /* glass-morphism */
    backdrop-filter: blur(20px);
    font-size: 0.875rem;
    border-radius: 9999px;
    border: 1px solid;
    display: inline-block;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    /* p-8 */
    border-radius: 1rem;
    /* rounded-2xl */
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

/* Shop */
.shop-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
}

.shop-icon-wrapper {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border-radius: 9999px;
}

/* Contact Form */
.form-input-container {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1.125rem;
}

.form-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

/* About Section */
.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1.5rem;
}

@media (min-width: 1024px) {
    .about-card {
        padding: 4rem;
    }
}

/* Modals */
.modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex !important;
}

.modal-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
}

/* SPA Page Transitions */
.page-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   Existing styles from sites.php, etc. (Preserved)
   ========================================= */
.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.platform-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

/* Preserving other styles... assuming standard set */
.search-container input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.search-container input:focus {
    border-color: var(--color-primary);
}

/* Accordion */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.accordion-content.active {
    max-height: 1000px;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Platform Mini */
.platform-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.platform-mini:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}