/* ============================================
   TENTACIT RECORDS - CYBERPUNK NEON THEME
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --neon-purple: #a855f7;
    --neon-blue: #38bdf8;
    --neon-pink: #ec4899;
    --neon-cyan: #22d3ee;
    --glow-purple: rgba(168, 85, 247, 0.3);
    --glow-blue: rgba(56, 189, 248, 0.3);
    --glow-cyan: rgba(34, 211, 238, 0.3);
    --card-bg: rgba(15, 15, 35, 0.7);
    --card-border: rgba(168, 85, 247, 0.12);
    --text-muted: rgba(255, 255, 255, 0.5);
    --bg-dark: #0a0a1a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-grid {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient {
    position: fixed;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(56, 189, 248, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(34, 211, 238, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(2%, -2%) scale(1.05); }
    100% { transform: translate(-2%, 2%) scale(1.02); }
}

/* ===== NAVBAR ===== */
.navbar-tentacit {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    padding: 12px 0;
    transition: all 0.3s;
}

.navbar-tentacit .navbar-brand img {
    height: 60px;
    filter: drop-shadow(0 0 20px var(--glow-purple));
    transition: 0.3s;
}

.navbar-tentacit .navbar-brand img:hover {
    filter: drop-shadow(0 0 30px var(--glow-blue));
}

.navbar-tentacit .nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.navbar-tentacit .nav-link:hover,
.navbar-tentacit .nav-link.active {
    color: #fff !important;
    background: rgba(168, 85, 247, 0.1);
}

.navbar-tentacit .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    border-radius: 2px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-tentacit {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px var(--glow-purple);
}

.btn-tentacit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}

.btn-tentacit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 45px var(--glow-blue);
    color: #fff;
}

.btn-tentacit:hover::before { left: 100%; }

.btn-tentacit-outline {
    display: inline-block;
    padding: 13px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s;
    margin-left: 12px;
}

.btn-tentacit-outline:hover {
    border-color: var(--neon-blue);
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 30px var(--glow-blue);
    transform: translateY(-3px);
    color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgba(10, 10, 26, 0.9);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    margin: 0 6px;
    transition: all 0.3s;
    text-decoration: none;
}

.site-footer .social-links a:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--glow-purple);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-blue));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--neon-purple); }

/* ===== PAGE BACKGROUND IMAGE ===== */
.page-bg-wrap {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.13;
    filter: saturate(0.5) brightness(0.35);
}

/* ===== GENRE BADGE ===== */
.genre-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NAVBAR OVERRIDE (ensures horizontal layout at lg+) ===== */
@media (min-width: 992px) {
    .navbar-tentacit .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-tentacit .navbar-nav {
        flex-direction: row !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .btn-tentacit-outline { margin-left: 0; margin-top: 10px; }
    .section-header h2 { font-size: 2rem; }
}
