
*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --color-black: #01070A;
    --color-slate: #46656F;
    --color-muted-blue: #8FABB7;
    --color-pale: #D8DFE5;
    --color-white: #FBFBFB;
    
    --spot-pink: #FF3366;
    --spot-cyan: #00F5FF;
    --spot-yellow: #FFD700;
}
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
    position: relative;
}


.paint-spot {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}
.spot-1 { top: 5%; right: -5%; width: 450px; height: 450px; background: var(--spot-pink); }
.spot-2 { top: 45%; left: -10%; width: 550px; height: 550px; background: var(--spot-cyan); }
.spot-3 { bottom: 10%; right: 15%; width: 350px; height: 350px; background: var(--spot-yellow); }


header {
    padding: 2.5rem 0 1.5rem;
    background: rgba(251, 251, 251, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--color-black);
    
    top: 0;
    z-index: 1000;
}

.header-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: var(--color-black);
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 0.8;
    position: relative;
}

.brand-logo span {
    color: var(--spot-pink);
    text-shadow: 2px 2px 0 var(--spot-cyan);
}

.nav-link-custom {
    text-decoration: none; 
    color: var(--color-black);
    font-family: 'Outfit'; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 1.5px;
    transition: 0.3s;
}
.nav-link-custom:hover { color: var(--spot-pink); }


.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}
.burger-btn span {
    display: block;
    width: 35px;
    height: 4px;
    background: var(--color-black);
    transition: 0.3s;
}


.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0;
    pointer-events: none;
}
.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.close-menu-btn:hover { color: var(--spot-pink); }
.mobile-nav {
    list-style: none;
    padding: 0;
    text-align: center;
}
.mobile-nav a {
    color: white;
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
    text-decoration: none;
    transition: 0.3s;
}
.mobile-nav a:hover {
    color: var(--spot-pink);
    transform: scale(1.1) rotate(-2deg);
}

.nav-main {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}
.nav-main a {
    text-decoration: none;
    color: var(--color-slate);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}
.nav-main a:hover {
    color: var(--color-black);
    transform: skewX(-10deg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}


.hero-section { margin-top: 3rem; }
.hero-card {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
    height: 100%;
    display: block;
}
.hero-card img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.85; transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.hero-card:hover img { transform: scale(1.08); opacity: 1; }

.featured-main { height: 600px; }
.featured-side { height: 290px; }

.hero-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(1, 7, 10, 0.95));
    color: white;
}
.hero-content h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1;
    transition: color 0.3s ease;
}
.hero-card:hover .hero-content h2 {
    color: var(--spot-pink);
}

.badge-eclectic {
    background: var(--spot-cyan);
    color: var(--color-black);
    padding: 4px 14px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 15px;
    transform: rotate(-2deg);
    transition: all 0.2s ease;
}
.badge-eclectic:hover {
    background: var(--spot-pink);
    color: white;
    transform: rotate(0deg) scale(1.1);
}


.trending-slider { margin: 5rem 0; }
.slider-box {
    background: var(--color-black);
    padding: 40px 0;
    position: relative;
    box-shadow: 20px 20px 0 var(--spot-pink);
}
.carousel-item-link {
    display: block;
    text-decoration: none;
}
.carousel-item-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 10%;
    color: white;
}
.carousel-item-content img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border: 5px solid white;
    transform: rotate(3deg);
    transition: 0.3s;
}
.carousel-item-content:hover img {
    transform: rotate(0deg) scale(1.05);
}
.carousel-item-content h3 {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1.1;
    transition: color 0.3s ease;
}
.carousel-item-link:hover h3 {
    color: var(--spot-cyan);
}
.carousel-item-content p {
    color: var(--color-muted-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}


.main-feed { margin-top: 5rem; }
.section-tag {
    font-family: 'Outfit';
    font-weight: 900;
    text-transform: uppercase;
    font-size: 5rem;
    color: var(--color-pale);
    line-height: 0.7;
    margin-bottom: 15px;
}

.article-card {
    border: none;
    margin-bottom: 60px;
    background: none;
    display: block;
}
.article-img-box {
    position: relative;
    height: 350px;
    margin-bottom: 25px;
}
.article-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(20%);
    transition: 0.4s;
}
.article-card:hover img {
    filter: grayscale(0%);
}
.article-img-box::after {
    content: '';
    position: absolute;
    top: 20px; left: 20px; width: 100%; height: 100%;
    border: 3px solid var(--color-black);
    z-index: -1;
    transition: all 0.3s ease;
}
.article-card:hover .article-img-box::after {
    border-color: var(--spot-pink);
    transform: translate(5px, 5px);
}

.article-card h5 {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.article-card:hover h5 { color: var(--spot-pink); }

#feed-container > div:nth-child(n+4) {
    display: none;
}

.btn-load {
    background: var(--color-black);
    color: white;
    border: none;
    padding: 22px 70px;
    font-family: 'Outfit';
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
    box-shadow: 8px 8px 0 var(--spot-cyan);
}
.btn-load:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0 var(--spot-pink);
    color: white;
}


.article-container {
    max-width: 1200px;
    margin: 3rem auto 5rem;
    padding: 0 20px;
}

.category-tag {
    background: var(--spot-cyan);
    color: var(--color-black);
    padding: 4px 14px;
    font-family: 'Outfit';
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.article-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: left;
}

.article-hero-wrapper {
    position: relative;
    margin-bottom: 3rem;
}
.article-hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border: 2px solid var(--color-black);
    position: relative;
    z-index: 2;
}
.article-hero-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: var(--spot-pink);
    z-index: 1;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-black);
}
.article-content p { margin-bottom: 2rem; }


.sidebar {
    padding-left: 2rem;
}
.sidebar-widget {
    margin-bottom: 3.5rem;
}
.widget-title {
    font-family: 'Outfit';
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-black);
    display: inline-block;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--color-pale);
}
.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-weight: 700;
    font-family: 'Outfit';
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-slate);
    transition: 0.2s;
}
.category-list a:hover {
    color: var(--spot-pink);
    padding-left: 5px;
}
.category-list .count {
    color: var(--spot-cyan);
    font-size: 0.75rem;
}

.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
}
.trending-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--color-black);
    flex-shrink: 0;
}
.trending-text h6 {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    transition: 0.2s;
}
.trending-item:hover h6 {
    color: var(--spot-pink);
}

.pull-quote {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--color-black);
    color: white;
    position: relative;
    transform: rotate(0.5deg);
    box-shadow: 10px 10px 0 var(--spot-cyan);
}
.pull-quote h3 {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.read-next {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-black);
}
.read-next-title {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.next-card {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 20px;
}
.next-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--color-black);
    transition: 0.3s;
}
.next-card:hover .next-card-img {
    box-shadow: 8px 8px 0 var(--spot-pink);
    transform: translate(-3px, -3px);
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-black);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 1.5rem;
    z-index: 1000;
    box-shadow: 4px 4px 0 var(--spot-cyan);
    display: none;
    cursor: pointer;
    transition: 0.3s;
}
#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 var(--spot-pink);
    background: var(--color-black);
}

.bottom-ticker {
    background: var(--spot-yellow);
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 5rem;
}
.ticker-wrapper {
    display: inline-block;
    animation: ticker 25s linear infinite;
}
.ticker-item {
    display: inline-block;
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-right: 50px;
    color: var(--color-black);
}
.ticker-item:hover { color: var(--spot-pink); }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

footer {
    background: var(--color-black);
    color: white;
    padding: 80px 0;
    text-align: center;
}

#loader { display: none; margin: 40px auto; }


@media (max-width: 991px) {
    .featured-main { height: 450px; }
    .hero-content h2 { font-size: 2.2rem; }
    .sidebar { padding-left: 0; margin-top: 4rem; }
    .article-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    header { padding: 1.5rem 0 1rem; }
    .brand-logo { font-size: 2.2rem; }
    
    .burger-btn { display: flex; }
    .hero-section { margin-top: 1.5rem; }
    
    .featured-main { height: 350px; margin-bottom: 1.5rem; }
    .featured-side { height: 220px; }
    .hero-content { padding: 25px; }
    .hero-content h2 { font-size: 1.6rem; }
    .hero-content h3 { font-size: 1.2rem; }

    .trending-slider { margin: 3rem 0; }
    .slider-box { box-shadow: 10px 10px 0 var(--spot-pink); padding: 30px 0; }
    .carousel-item-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    .carousel-item-content img { 
        width: 100%; 
        max-width: 250px; 
        height: auto; 
        transform: rotate(0deg); 
    }
    .carousel-item-content:hover img { transform: scale(1.05); }
    .carousel-item-content h3 { font-size: 1.5rem; }

    .main-feed { margin-top: 3rem; }
    .section-tag { font-size: 3.2rem; }
    .article-img-box { height: 250px; }
    .article-card { margin-bottom: 40px; }
    
    .btn-load { 
        padding: 15px 40px; 
        font-size: 1rem; 
        box-shadow: 5px 5px 0 var(--spot-cyan); 
    }
    .btn-load:hover { box-shadow: 8px 8px 0 var(--spot-pink); }

    .bottom-ticker { margin-top: 3rem; padding: 10px 0; }
    .ticker-item { font-size: 1.3rem; margin-right: 30px; }
    
    #scrollTopBtn { width: 45px; height: 45px; font-size: 1.2rem; right: 15px; bottom: 15px; }
}

.embeded-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 3rem 0;
    border: 3px solid var(--color-black);
    box-shadow: 10px 10px 0 var(--spot-yellow);
    background: var(--color-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.embeded-video:hover {
    transform: translate(-3px, -3px);
    box-shadow: 13px 13px 0 var(--spot-pink);
}

.embeded-video iframe,
.embeded-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 768px) {
    .embeded-video {
        margin: 2rem 0;
        box-shadow: 6px 6px 0 var(--spot-yellow);
    }
    .embeded-video:hover {
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0 var(--spot-pink);
    }
}

        .category-header {
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .category-title {
            font-family: 'Outfit';
            font-weight: 900;
            font-size: clamp(3rem, 10vw, 6rem);
            line-height: 0.8;
            text-transform: uppercase;
            letter-spacing: -4px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .category-title::after {
            content: '';
            position: absolute;
            bottom: -5px; right: 0;
            width: 100px; height: 15px;
            background: var(--spot-yellow);
            z-index: -1;
            transform: rotate(-2deg);
        }
        .category-desc {
            font-family: 'Outfit';
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-slate);
            font-size: 0.9rem;
        }


        .main-container {
            max-width: 1200px;
            margin: 2rem auto 5rem;
            padding: 0 20px;
        }

        .article-card {
            border: none;
            margin-bottom: 60px;
            background: none;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .article-img-box {
            position: relative;
            height: 300px;
            margin-bottom: 25px;
        }
        .article-img-box img {
            width: 100%; height: 100%; object-fit: cover;
            border: 2px solid var(--color-black);
            transition: 0.4s;
        }
        .article-card:hover img {
            transform: translate(-5px, -5px);
            box-shadow: 10px 10px 0 var(--spot-pink);
        }
        .article-card h5 {
            font-family: 'Outfit';
            font-weight: 800;
            font-size: 1.3rem;
            line-height: 1.2;
            text-transform: uppercase;
            margin-top: 15px;
            transition: color 0.3s;
        }
        .article-card:hover h5 {
            color: var(--spot-pink);
        }
        .article-card .date {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--color-muted-blue);
        }


.pagination-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.pagination-container ul.pagination {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.pagination-container ul.pagination li a,
.pagination-container ul.pagination li span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-black);
    background: white;
    color: var(--color-black);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}


.pagination-container ul.pagination li a:hover {
    background: var(--color-black);
    color: white;
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 var(--spot-cyan);
}

.pagination-container ul.pagination li.active a,
.pagination-container ul.pagination li.active span {
    background: var(--color-black);
    color: white;
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 var(--spot-pink);
}



        .sidebar-widget {
            margin-bottom: 4rem;
        }
        .widget-title {
            font-family: 'Outfit';
            font-weight: 900;
            text-transform: uppercase;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            border-bottom: 3px solid var(--spot-pink);
        }
        .trending-mini {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            text-decoration: none;
            color: inherit;
        }
        .trending-mini img {
            width: 70px; height: 70px; object-fit: cover;
            border: 1px solid var(--color-black);
        }
        .trending-mini h6 {
            font-family: 'Outfit'; font-weight: 800; font-size: 0.85rem;
            text-transform: uppercase; line-height: 1.2;
        }

   

        @media (max-width: 991px) {
            .category-title { font-size: 4rem; letter-spacing: -2px; }
            .sidebar { margin-top: 3rem; }
        }