:root {
    --razer-green: #44d62c;
    --razer-green-glow: rgba(68, 214, 44, 0.4);
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border-color: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo-text,
.neon-text {
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accent {
    color: var(--razer-green);
}

::selection {
    background: var(--razer-green);
    color: #000;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    animation: bannerBreathe 4s infinite alternate;
}

@keyframes bannerBreathe {
    0% {
        box-shadow: 0 4px 15px rgba(68, 214, 44, 0.05), inset 0 0 10px rgba(68, 214, 44, 0.02);
        border-bottom-color: rgba(68, 214, 44, 0.1);
    }

    100% {
        box-shadow: 0 4px 30px rgba(68, 214, 44, 0.25), inset 0 -2px 15px rgba(68, 214, 44, 0.1);
        border-bottom-color: rgba(68, 214, 44, 0.4);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 0 10px var(--razer-green-glow);
    transition: transform 0.3s ease;
    animation: iconBounce 2s infinite ease-in-out;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo:hover .logo-icon-img {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--razer-green);
    text-shadow: 0 0 8px var(--razer-green-glow);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--razer-green);
    color: #000;
    padding: 14px 28px;
    border: none;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-primary:hover,
.glow-effect:hover {
    box-shadow: 0 0 25px var(--razer-green);
    transform: translateY(-2px);
    background: #5cf144;
}

.btn-secondary {
    display: inline-block;
    background: rgba(68, 214, 44, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-secondary:hover {
    border-color: var(--razer-green);
    color: var(--razer-green);
    box-shadow: inset 0 0 15px var(--razer-green-glow);
    background: rgba(68, 214, 44, 0.1);
}

.btn-group {
    position: relative;
    display: inline-block;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: -20px;
    background: #ff5f56;
    /* Bright alert red */
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
    z-index: 10;
    animation: badgePulse 2s infinite;
    white-space: nowrap;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 5% 120px;
    min-height: 100vh;
    background: radial-gradient(circle at 70% 50%, #172a15 0%, var(--bg-dark) 55%);
}

.hero-content {
    max-width: 650px;
    animation: slideInLeft 1s ease forwards;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.powered-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--razer-green);
    color: var(--bg-dark);
    font-size: 1rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    padding: 6px 16px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px var(--razer-green-glow);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.neon-text {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.accent-glow {
    color: var(--razer-green);
    text-shadow: 0 0 25px var(--razer-green);
}

.description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease forwards;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite, pulseBrightness 3s ease-in-out infinite alternate;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
}

@keyframes pulseBrightness {
    0% {
        filter: contrast(1.5) brightness(1);
    }

    100% {
        filter: contrast(1.5) brightness(1.6);
    }
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.glow-backdrop {
    display: none;
}

/* Adoption Section */
.adoption-section {
    padding: 120px 5%;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(to bottom, #0d150c, var(--bg-dark));
}

.adoption-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.adoption-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.adoption-card:hover {
    border-color: var(--razer-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(68, 214, 44, 0.05);
}

.card-content {
    padding: 50px;
}

.adoption-card .icon {
    margin-bottom: 20px;
    display: inline-block;
}

.feather-icon {
    width: 48px;
    height: 48px;
    stroke: var(--razer-green);
    filter: drop-shadow(0 0 8px var(--razer-green-glow));
    transition: transform 0.3s ease;
}

.adoption-card:hover .feather-icon {
    transform: scale(1.1);
}

.adoption-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight-text {
    color: var(--razer-green);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
}

.engineer-teams {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--razer-green);
    background: rgba(68, 214, 44, 0.05);
}

.female-team-card {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.05);
}

.female-team-card:hover {
    border-color: rgba(255, 105, 180, 0.6);
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
}

.team-header {
    margin-bottom: 12px;
}

.team-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.team-label.female-team {
    background: rgba(255, 105, 180, 0.15);
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.team-label.male-team {
    background: rgba(68, 214, 44, 0.15);
    color: var(--razer-green);
    border: 1px solid rgba(68, 214, 44, 0.3);
}

.team-card img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #222;
}

.team-types {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.team-types span {
    font-size: 0.85rem;
    font-weight: 900;
    color: #ff69b4;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid rgba(68, 214, 44, 0.2);
    background: #000;
}

.offline-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.offline-header-flex h3 {
    margin-bottom: 0;
}

.medal-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(218, 165, 32, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    animation: goldShimmer 3s infinite alternate;
}

.medal-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: #000;
    border: 2px solid gold;
    padding: 2px;
    box-shadow: 0 0 8px gold;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-slogan {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.1rem;
    color: var(--razer-green);
    margin-left: 12px;
    text-transform: none;
    letter-spacing: 2px;
    font-weight: 400;
    text-shadow: 0 0 12px rgba(68, 214, 44, 0.6);

    /* Typewriter effect */
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: baseline;
    border-right: 3px solid var(--razer-green);
    width: 0;
    animation:
        typing 2.5s steps(10, end) forwards,
        blink-caret .75s step-end infinite;
    animation-delay: 1s;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 10.5em;
        /* Approximately fits 10 Chinese characters/spaces */
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--razer-green);
    }
}

.medal-text {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

@keyframes goldShimmer {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.1), inset 0 0 5px rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), inset 0 0 15px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.7);
    }
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.adoption-card:hover .map-container img {
    opacity: 1;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: 5px;
}

.city-tags span {
    background: rgba(68, 214, 44, 0.1);
    color: var(--razer-green);
    border: 1px solid rgba(68, 214, 44, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    transition: all 0.2s;
    cursor: default;
}

.city-tags span:hover {
    background: var(--razer-green);
    color: #000;
    box-shadow: 0 0 15px var(--razer-green-glow);
}

.city-tags span.pending-city {
    background: transparent;
    border: 1px dashed rgba(68, 214, 44, 0.4);
    color: rgba(68, 214, 44, 0.7);
    cursor: pointer;
}

.city-tags span.pending-city:hover {
    background: rgba(68, 214, 44, 0.05);
    color: var(--razer-green);
    box-shadow: none;
    border-color: var(--razer-green);
}

.city-tags span.city-note {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 300;
    padding: 6px 0 6px 4px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.city-tags span.city-note:hover {
    background: transparent;
    color: #fff;
    box-shadow: none;
}


/* Features */
.features {
    padding: 120px 5%;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(to bottom, var(--bg-dark), #0d150c);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    /* Allow 4 columns on standard desktop by reducing minmax */
    gap: 20px;
    /* Reduced gap to fit 4 items better */
}

@media (min-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Enforce 4x2 on large screens */
    }
}

.feature-card {
    background: var(--bg-card);
    padding: 35px 25px;
    /* Reduced padding slightly to ensure fit */
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--razer-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--razer-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    background: #181c18;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--razer-green);
    text-shadow: 0 0 20px var(--razer-green-glow);
    display: flex;
    justify-content: flex-start;
}

.feature-svg {
    width: 50px;
    height: 50px;
    color: var(--razer-green);
    filter: drop-shadow(0 0 10px rgba(68, 214, 44, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .feature-svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 18px rgba(68, 214, 44, 0.9));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 5%;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--razer-green);
    box-shadow: 0 15px 30px rgba(68, 214, 44, 0.1);
}

.pricing-card.pro {
    border-color: rgba(68, 214, 44, 0.5);
    background: linear-gradient(180deg, rgba(68, 214, 44, 0.05) 0%, var(--bg-card) 100%);
}

.pricing-card.pro::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--razer-green);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 3.5rem;
    color: var(--razer-green);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    color: #ddd;
    display: flex;
    align-items: flex-start;
}

.pricing-card ul li .check {
    color: var(--razer-green);
    margin-right: 15px;
    font-weight: bold;
}

.pricing-card ul li .muted {
    opacity: 0.5;
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--razer-green);
    color: var(--razer-green);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-pricing:hover {
    background: var(--razer-green);
    color: #000;
    box-shadow: 0 0 15px var(--razer-green-glow);
}

/* Demo Section / Terminal */
.demo-section {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    background: radial-gradient(ellipse at bottom, #11200f 0%, var(--bg-dark) 70%);
}

.terminal-container {
    width: 100%;
    max-width: 900px;
    background: #050505;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(68, 214, 44, 0.08);
}

.terminal-header {
    background: #151515;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #333;
    font-family: 'Orbitron', monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dot-group {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
    box-shadow: 0 0 8px #27c93f;
}

.terminal-window {
    height: 450px;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Courier New', Courier, monospace;
}

.message {
    font-size: 0.95rem;
    line-height: 1.5;
}

.system {
    color: #00ff00;
    opacity: 0.8;
}

.agent {
    color: var(--razer-green);
    text-shadow: 0 0 2px var(--razer-green-glow);
}

.user {
    color: #fff;
}

.terminal-input-area {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #0a0a0a;
    border-top: 1px solid #222;
}

.prompt-symbol {
    color: var(--razer-green);
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

#userInput {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    outline: none;
}

#userInput::placeholder {
    color: #444;
}

.btn-terminal {
    background: transparent;
    color: var(--razer-green);
    border: 1px solid var(--razer-green);
    padding: 8px 16px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-terminal:hover {
    background: rgba(68, 214, 44, 0.2);
    box-shadow: 0 0 10px var(--razer-green-glow);
}

/* Custom Scrollbar for Terminal */
.terminal-window::-webkit-scrollbar {
    width: 8px;
}

.terminal-window::-webkit-scrollbar-track {
    background: #050505;
}

.terminal-window::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.terminal-window::-webkit-scrollbar-thumb:hover {
    background: var(--razer-green);
}

footer {
    text-align: center;
    padding: 50px 20px;
    background: #050505;
    color: #555;
    border-top: 1px solid #111;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.2;
    }
}

/* Recruitment Section (Become an Engineer) */
.recruitment-section {
    padding: 100px 5%;
    background: #080a08;
    border-top: 1px solid #1a291a;
}

.recruitment-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(14, 21, 14, 0.9) 0%, rgba(5, 8, 5, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.recruitment-content {
    flex: 1;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.recruitment-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.recruitment-content .subtitle {
    font-size: 1.2rem;
    color: var(--razer-green);
    margin-bottom: 40px;
}

.perks-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
}

.perk-icon {
    font-size: 2rem;
    background: rgba(68, 214, 44, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(68, 214, 44, 0.3);
    margin-right: 20px;
    flex-shrink: 0;
}

.perk-text h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.perk-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-indicator {
    color: #888;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.recruitment-image {
    flex: 1;
    min-width: 400px;
    height: 100%;
    position: relative;
    background: url('./assets/media_1772834331019.png') center/cover no-repeat;
    /* Using one of the generated cyber images or a generic grid */
    min-height: 500px;
}

.recruitment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 8, 5, 1) 0%, rgba(5, 8, 5, 0) 50%);
}

.hacker-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.2;
}

@media (max-width: 900px) {
    .recruitment-container {
        flex-direction: column;
    }

    .recruitment-image {
        min-width: 100%;
        min-height: 300px;
    }

    .recruitment-image::after {
        background: linear-gradient(to bottom, rgba(5, 8, 5, 1) 0%, rgba(5, 8, 5, 0.4) 100%);
    }

    .recruitment-content {
        padding: 40px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .title {
        font-size: 4rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 60px;
    }

    .subtitle {
        margin-top: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        animation: none;
    }

    .hero-image {
        display: none;
    }

    /* Consider hiding image on smaller screens or rendering differently */
}

@media (max-width: 600px) {
    .title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Mouse Spotlight Effect */
#spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(68, 214, 44, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    /* Behind most content, but above the dark base background */
}

body:hover #spotlight {
    opacity: 1;
}

/* Scroll Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}