/* static/css/style.css */

:root {
    --black: #030303;
    --dark: #0b0b0b;
    --dark-two: #111111;
    --silver: #c9c9c9;
    --silver-light: #f2f2f2;
    --muted: #9a9a9a;
    --border: rgba(255, 255, 255, 0.12);
    --glow: rgba(255, 255, 255, 0.28);
}

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

body {
    background: var(--black);
    color: var(--silver-light);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Navbar */
.dj-navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.dj-logo-text {
    color: var(--silver-light) !important;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 24px;
    text-shadow: 0 0 15px var(--glow);
}

.dj-navbar .nav-link {
    color: var(--silver) !important;
    margin-left: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.dj-navbar .nav-link:hover {
    color: #fff !important;
}

/* Buttons */
.dj-btn {
    background: linear-gradient(135deg, #f1f1f1, #777);
    color: #000;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dj-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px var(--glow);
}

.dj-btn-outline {
    color: #fff;
    border: 1px solid var(--silver);
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dj-btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.45), rgba(0,0,0,0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--silver);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: clamp(55px, 9vw, 120px);
    font-weight: 900;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 0 30px var(--glow);
}

.hero-content p {
    color: var(--silver);
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 30px;
}

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

/* Sections */
.section-padding {
    padding: 90px 0;
}

.dark-section {
    background: var(--dark);
}

.section-title {
    margin-bottom: 40px;
}

.section-title span,
.about-content span {
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 14px;
}

.section-title h2,
.about-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-top: 10px;
}

.section-title p {
    color: var(--muted);
}

/* Live Player */
.live-player-box {
    background: #000;
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255,255,255,0.08);
}

/* Ad */
.ad-section {
    padding: 40px 0;
    background: #050505;
}

.ad-box {
    border: 1px dashed var(--border);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    background: linear-gradient(135deg, #090909, #151515);
}

.ad-box span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ad-box h3 {
    margin-top: 10px;
    color: #fff;
    font-weight: 800;
}

/* Show Card */
.show-card {
    background: linear-gradient(145deg, #111, #050505);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(255,255,255,0.08);
}

.show-date {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 7px 15px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 18px;
}

.show-card h4 {
    color: #fff;
    font-weight: 800;
}

.show-card p {
    color: var(--muted);
}

.card-link {
    color: var(--silver-light);
    font-weight: 700;
}

/* Blog */
.blog-card {
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(255,255,255,0.08);
}

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content span {
    color: var(--silver);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.blog-content h4 {
    color: #fff;
    margin-top: 10px;
    font-weight: 800;
}

.blog-content p {
    color: var(--muted);
}

.blog-content a {
    color: #fff;
    font-weight: 700;
}

/* Page Header */
.page-header {
    min-height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
}

.page-header p {
    color: var(--silver);
    font-size: 20px;
}

/* About */
.about-image {
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(255,255,255,0.08);
}

.about-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.contact-box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #080808;
}

.contact-box h4 {
    color: #fff;
    font-weight: 800;
}

.contact-box p {
    margin-bottom: 8px;
}

.contact-box i {
    margin-right: 10px;
    color: var(--silver-light);
}

/* Footer */
.dj-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 50px 0;
}

.dj-footer h4 {
    color: #fff;
    font-weight: 900;
    letter-spacing: 3px;
}

.dj-footer p {
    color: var(--muted);
}

.social-links {
    margin: 22px 0;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: #fff;
    margin: 0 5px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 760px;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-title h2,
    .about-content h2 {
        font-size: 34px;
    }

    .dj-navbar .nav-link {
        margin-left: 0;
        margin-top: 12px;
    }
}


/* ==========================
ANIMATIONS
========================== */

/* Fade Up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Glow */
@keyframes glowPulse {
    0% {
        text-shadow:
            0 0 10px rgba(255,255,255,.2),
            0 0 20px rgba(255,255,255,.1);
    }

    50% {
        text-shadow:
            0 0 25px rgba(255,255,255,.6),
            0 0 60px rgba(255,255,255,.3);
    }

    100% {
        text-shadow:
            0 0 10px rgba(255,255,255,.2),
            0 0 20px rgba(255,255,255,.1);
    }
}

/* Float */
@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Border Glow */
@keyframes borderGlow {
    0% {
        box-shadow:
            0 0 0 rgba(255,255,255,0);
    }

    50% {
        box-shadow:
            0 0 35px rgba(255,255,255,.15);
    }

    100% {
        box-shadow:
            0 0 0 rgba(255,255,255,0);
    }
}

/* Hero Entrance */

.hero-badge{
    animation:
        fadeUp .8s ease forwards;
}

.hero-content h1 {
    animation:
        fadeUp 1s ease,
        glowPulse 4s infinite;
}

.hero-content p {
    opacity: 0;
    animation:
        fadeUp 1.4s ease forwards;
}

.hero-buttons {
    opacity: 0;
    animation:
        fadeUp 1.8s ease forwards;
}

/* Cards */

.show-card,
.blog-card,
.live-player-box,
.ad-box,
.contact-box {
    animation:
        fadeUp .8s ease;
}

/* Hover Lift */

.show-card:hover,
.blog-card:hover {

    transform:
        translateY(-12px)
        scale(1.02);

    box-shadow:
        0 0 50px rgba(255,255,255,.12);

    border-color:
        rgba(255,255,255,.25);
}

/* Navbar */

.dj-navbar {
    animation:
        fadeIn .6s ease;
}

/* Logo */

.dj-logo-text {
    animation:
        glowPulse 5s infinite;
}

/* Buttons */

.dj-btn,
.dj-btn-outline {

    transition:
        .35s;
}

.dj-btn:hover,
.dj-btn-outline:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 35px rgba(255,255,255,.25);
}

/* Images */

.blog-card img,
.about-image img {

    transition:
        1.2s;
}

.blog-card:hover img,
.about-image:hover img {

    transform:
        scale(1.08);
}

/* Live Player */

.live-player-box {

    animation:
        borderGlow 4s infinite;
}

/* Footer Icons */

.social-links a:hover {

    transform:
        rotate(360deg)
        scale(1.15);
}

/* Section Titles */

.section-title h2,
.page-header h1 {

    animation:
        glowPulse 6s infinite;
}

/* Hero Background */

.hero-section {

    animation:
        floating 8s ease infinite;
}

/* Page Header */

.page-header {

    animation:
        fadeIn 1s ease;
}

/* Scroll Reveal */

.reveal {

    opacity: 0;

    transform:
        translateY(60px);

    transition:
        1s;
}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce){

*{
animation:none !important;
transition:none !important;
}

}

/* ==========================
SMOOTH SCROLL
========================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #666, #c9c9c9);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}

section,
.page-header {
    scroll-margin-top: 100px;
}

/* Blog Detail Page */

.blog-detail-header {
    min-height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: end;
    padding: 160px 0 80px;
}

.blog-detail-header .container {
    position: relative;
    z-index: 2;
}

.detail-category {
    display: inline-block;
    color: #000;
    background: linear-gradient(135deg, #fff, #777);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.blog-detail-header h1 {
    max-width: 850px;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 30px var(--glow);
}

.blog-detail-header p {
    max-width: 680px;
    color: var(--silver);
    font-size: 20px;
}

.blog-detail-content {
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
}

.detail-main-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
}

.detail-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.detail-meta i {
    color: #fff;
    margin-right: 6px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: #fff;
    font-weight: 900;
    margin: 25px 0 15px;
}

.blog-detail-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.detail-video-box {
    background: #000;
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 20px;
    margin: 35px 0;
    box-shadow: 0 0 35px rgba(255,255,255,0.08);
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--silver);
    padding: 22px 25px;
    background: #111;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    border-radius: 14px;
    margin: 30px 0;
}

.detail-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-box {
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 25px;
}

.sidebar-box h4 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 15px;
}

.sidebar-box p {
    color: var(--muted);
}

.sidebar-post {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-post:last-child {
    border-bottom: 0;
}

.sidebar-post img {
    width: 78px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
}

.sidebar-post span {
    color: var(--silver);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-post p {
    color: #fff;
    font-weight: 700;
    margin: 2px 0 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .blog-detail-header {
        min-height: 480px;
        padding: 140px 0 55px;
    }

    .detail-main-img {
        height: 260px;
    }

    .blog-detail-content {
        padding: 18px;
    }

    .detail-sidebar {
        position: static;
    }
}
