/* GLOBAL */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff9d;
    text-shadow:
        0 0 8px #00ff9d,
        0 0 15px #00ff9d,
        2px 2px 3px #000,
        -2px -2px 3px #000,
        2px -2px 3px #000,
        -2px 2px 3px #000;
}

.section {
    padding: 60px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* HERO */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    padding: 120px 10%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-inner {
    max-width: 700px;
    margin: auto;
}

/* PRODUCT GRID */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ff9d55;
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #00ff9d;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* MEDIA CARDS */
.media-card img {
    width: 100%;
    border-radius: 8px;
}

/* CINEMATIC SECTION */
.cinematic-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    z-index: 1;
}

.cinematic-block {
    position: relative;
    width: 70%;
    margin: 60px auto;
}

.cinematic-block img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 25px #00ff9d;
}

.cinematic-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 1.6rem;
    color: #00ff9d;
    font-family: 'Orbitron', sans-serif;
    text-shadow:
        0 0 10px #00ff9d,
        2px 2px 3px #000,
        -2px -2px 3px #000;
}

/* TEAM */
.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ff9d55;
    max-width: 260px;
    margin: auto;
}

.team-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 10px;
    display: block;
    object-fit: cover;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #00ff9d;
}

/* CONTACT */
.contact-box {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    width: 60%;
    margin: auto;
    box-shadow: 0 0 20px #00ff9d55;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #050505;
    color: #888;
}

/* GLOBAL LINK BASE */
a {
    color: #00ff9d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease-out, text-shadow 0.2s ease-out, background 0.2s ease-out, padding 0.2s ease-out;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00ff9d;
    background: rgba(0, 255, 157, 0.18);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ARTICLE LINK BASE */
.article-link {
    color: #00ff9d;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #00ff9d55;
    padding-bottom: 3px;
    transition: color 0.2s ease-out, border-color 0.2s ease-out, text-shadow 0.2s ease-out;
}

.article-link:hover {
    color: #ffffff;
    border-color: #00ff9d;
    text-shadow: 0 0 10px #00ff9d;
}

/* GLOWING BUTTONS — ALL CLICKABLE */
.video-btn,
.media-link {
    display: inline-block;
    padding: 12px 28px;
    background: #00ff9d;
    color: #000;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 6px 0;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, color 0.15s ease-out;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.video-btn:hover,
.media-link:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px #00ff9d, 0 0 40px #00ff9d55;
    color: #000;
}

/* CTA BUTTON (TOP HERO BUTTON) */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #00ff9d;
    color: #000;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 6px 0;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, color 0.15s ease-out;
    cursor: pointer;
}

.cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px #00ff9d, 0 0 40px #00ff9d55;
    color: #000;
}