/* ---------- ROOT ---------- */
:root {
    --clr-bg: #000000;
    --clr-surface: rgba(26, 26, 31, 0.8);
    --clr-surface-2: rgba(37, 37, 44, 0.8);
    --clr-neon: #ff0000;
    --clr-neon-dark: #cc0000;
    --clr-text: #e5e5e5;
    --clr-text-dim: #b0a0a0;
    --radius: 12px;
    --transition: .35s ease;
    --glow: 0 0 4px var(--clr-neon), 0 0 12px var(--clr-neon), 0 0 24px var(--clr-neon-dark);
}

/* Floating Neon Text Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-bg);
    z-index: -1;
    overflow: hidden;
}

/* Floating Neon Text Elements */
.floating-text {
    position: fixed;
    color: rgba(255, 0, 0, 0.1);
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    pointer-events: none;
    z-index: -1;
    text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #ff0000,
        0 0 80px #ff0000,
        0 0 90px #ff0000,
        0 0 100px #ff0000,
        0 0 150px #ff0000;
    transform-style: preserve-3d;
    animation: float 45s infinite linear;
    opacity: 0.8;
    -webkit-text-stroke: 1px rgba(255, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes float {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate3d(25vw, 25vh, 0) rotate(90deg) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(50vw, 50vh, 0) rotate(180deg) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translate3d(75vw, 25vh, 0) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: translate3d(100vw, 100vh, 0) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

/* Create multiple floating text elements */
.floating-text:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 10rem;
    animation-duration: 40s;
    animation-delay: 0s;
    z-index: -1;
    opacity: 0.6;
}

.floating-text:nth-child(2) {
    top: 30%;
    left: 70%;
    font-size: 12rem;
    animation-duration: 45s;
    animation-delay: -8s;
    z-index: -2;
    opacity: 0.5;
}

.floating-text:nth-child(3) {
    top: 60%;
    left: 20%;
    font-size: 9rem;
    animation-duration: 50s;
    animation-delay: -15s;
    z-index: -3;
    opacity: 0.4;
}

.floating-text:nth-child(4) {
    top: 80%;
    left: 60%;
    font-size: 11rem;
    animation-duration: 55s;
    animation-delay: -22s;
    z-index: -4;
    opacity: 0.5;
}

.floating-text:nth-child(5) {
    top: 20%;
    left: 40%;
    font-size: 13rem;
    animation-duration: 60s;
    animation-delay: -30s;
    z-index: -5;
    opacity: 0.3;
}

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-text);
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}



/* ---------- HERO SECTION ---------- */
.hero {
    padding: 120px 0 80px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    margin: 0 0 30px 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--clr-neon);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, var(--clr-neon) 0%, #ff6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-excerpt {
    color: var(--clr-text-dim);
    margin-bottom: 2rem;
    max-width: 480px;
}

.neon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid var(--clr-neon);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    color: var(--clr-neon);
}

.neon-btn:hover {
    background: var(--clr-neon);
    color: var(--clr-bg);
    box-shadow: var(--glow);
}

/* ---------- NEWS SECTION ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.news-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2), var(--glow);
    border-color: var(--clr-neon);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--clr-text-dim);
    margin-bottom: 0.7rem;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    margin-bottom: 1.2rem;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-neon);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition);
}

.read-more:hover {
    gap: 0.7rem;
}

/* ---------- FOOTER ---------- */
footer {
    margin-top: 100px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 10;
    color: var(--clr-text);
    padding: 3rem 0 1rem;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.footer-col h4 {
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}



.footer-col p {
    color: var(--clr-text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text);
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.socials a:hover {
    background: var(--clr-neon);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--clr-neon);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--clr-text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--clr-neon);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    color: var(--clr-text-dim);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-neon);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--clr-neon);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: var(--clr-neon);
    color: #000;
    box-shadow: 0 0 10px var(--clr-neon);
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem 0;
}

.footer-col {
    flex: 1 1 260px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--clr-neon);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: var(--clr-text-dim);
    transition: color var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--clr-neon);
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--clr-neon-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: var(--clr-neon);
    transition: all var(--transition);
    text-decoration: none;
}

.socials a:hover {
    background: var(--clr-neon);
    color: var(--clr-bg);
    box-shadow: var(--glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--clr-text-dim);
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-neon);
    color: var(--clr-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.support-btn:hover {
    box-shadow: var(--glow);
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .footer-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}