@font-face {
    font-family: 'FT Vortex';
    src: url('FtVortex.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #050505;
    --panel: #141418;
    --accent: #17d42a;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --muted: rgba(255, 255, 255, 0.07);
    --header-h: 90px;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
    --font-special: 'FT Vortex', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-h);
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.shiny-green {
    font-family: var(--font-special) !important;
    font-weight: normal !important;
    text-transform: uppercase;
    font-size: 1.2em;
    background: linear-gradient(
        135deg,
        #000000 0%,
        #17d42a 45%,
        #cfffcf 50%,
        #17d42a 55%,
        #000000 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    text-shadow: 0px 4px 6px rgba(0,0,0,0.5);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

h1, h2, h3, h4, .section-title, .project-title, .service-card h3 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 10000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--muted);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 25px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin-right: 35px;
}

.nav-item {
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-item:hover { color: var(--accent); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
    border-left: 1px solid var(--muted);
}

.nav-icon {
    color: var(--text);
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-icon:hover { color: var(--accent); }

.burger-menu {
    display: none;
    width: 25px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.4s var(--ease);
}

.game-selector-container {
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.game-trigger {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.game-trigger:hover, .game-trigger.active {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.game-menu {
    position: absolute;
    top: 35px;
    right: 0;
    background: var(--panel);
    border: 1px solid var(--muted);
    border-radius: 50%;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease);
    z-index: 1000;
}

.game-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.game-option {
    width: 35px;
    height: 35px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 25px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns { display: flex; gap: 15px; }

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s var(--ease);
}

.btn-primary { background: var(--accent); color: #050505; border: 1px solid var(--accent); font-weight: 900; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(23, 212, 42, 0.2); }
.btn-secondary { border: 1px solid var(--muted); color: white; }
.btn-secondary:hover { background: white; color: black; }

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.service-card {
    background: var(--panel);
    padding: 50px 40px;
    border-radius: 24px;
    color: white;
    border: 1px solid var(--muted);
    transition: 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card .icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-dim); margin-bottom: 25px; flex-grow: 1; }
.service-card:hover { transform: translateY(-10px); border-color: var(--accent); }

.projects { padding: 100px 0; background: #080808; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; }
.project-card { position: relative; border-radius: 20px; overflow: hidden; height: 450px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s var(--ease); }
.project-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; transition: background 0.4s ease; }
.project-title { font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.project-text { color: var(--text-dim); font-size: 0.9rem; opacity: 0; transform: translateY(20px); transition: 0.4s var(--ease); }
.project-card:hover img { transform: scale(1.1); }
.project-card:hover .project-text { opacity: 1; transform: translateY(0); }
.project-card:hover .overlay { background: linear-gradient(to top, rgba(23, 212, 42, 0.4), transparent); }

.about { padding: 120px 0; }
.about-flex { display: flex; align-items: center; gap: 80px; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 30px; }
.about-image img { width: 100%; border-radius: 30px; filter: grayscale(1); transition: 0.6s; }
.about-image img:hover { filter: grayscale(0); }

.footer-premium { padding: 100px 0 40px; border-top: 1px solid var(--muted); background: #030303; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { height: 30px; margin-bottom: 25px; }
.social-pills { display: flex; gap: 12px; }
.social-pills a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--muted); display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
.social-pills a:hover { background: var(--accent); color: black; border-color: var(--accent); }

.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 10px; }
.footer-nav-col a { color: var(--text-dim); font-size: 0.9rem; display: block; transition: 0.3s; }
.footer-nav-col a:hover { color: white; padding-left: 5px; }

.footer-contact-col p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 10px; }
.contact-link { color: #ffffff !important; font-weight: 700; transition: 0.3s; }
.contact-link:hover { color: var(--accent) !important; }

.footer-bottom { border-top: 1px solid var(--muted); padding-top: 30px; display: flex; justify-content: space-between; font-size: 0.8rem; color: #555; }
.legal-links a { color: #555; margin-left: 15px; transition: 0.3s; }
.legal-links a:hover { color: var(--text-dim); }

@media (max-width: 992px) {
    .about-flex { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .burger-menu { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: #050505; flex-direction: column; align-items: center;