@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&family=Share+Tech+Mono&family=Syncopate:wght@400;700&display=swap');

:root {
    --bumblebee-yellow: #FFD700;
    --bumblebee-dark: #ccac00;
    --energon-blue: #00BFFF;
    --energon-glow: rgba(0, 191, 255, 0.6);
    --midnight-black: #020202;
    --carbon-fiber: #0a0a0a;
    --metal-trim: #222222;
    --text-glow: 0 0 15px rgba(255, 215, 0, 0.7);
    --transition-cinematic: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--midnight-black);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--bumblebee-yellow); border-radius: 10px; box-shadow: var(--text-glow); }

/* Cinematic Entrance Overlay */
.entrance-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease 2s, visibility 0s linear 3s;
}

.loader-logo {
    width: 150px;
    filter: drop-shadow(var(--text-glow));
    animation: pulse-energon 2s infinite;
}

@keyframes pulse-energon {
    0% { transform: scale(1); opacity: 0.5; filter: drop-shadow(0 0 5px var(--energon-blue)); }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px var(--energon-blue)); }
    100% { transform: scale(1); opacity: 0.5; filter: drop-shadow(0 0 5px var(--energon-blue)); }
}

/* Custom Cursor - Advanced */
.cursor-main {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bumblebee-yellow);
    border-radius: 2px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-main::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--energon-blue);
    box-shadow: 0 0 10px var(--energon-blue);
}

.cursor-trail {
    position: fixed;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out;
}

/* Nav Revamp - HUD Style */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.nav-hud-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Share Tech Mono';
    font-size: 0.8rem;
    color: var(--energon-blue);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--energon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--energon-blue);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition-cinematic);
}

.nav-links li a:hover {
    color: var(--bumblebee-yellow);
    text-shadow: var(--text-glow);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bumblebee-yellow);
    transition: width 0.4s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Background HUD Overlays */
.hud-bg-element {
    position: fixed;
    pointer-events: none;
    z-index: 50;
    opacity: 0.3;
}

.hud-lines {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px) 0 0 / 100% 100px,
        linear-gradient(90deg, rgba(255, 215, 0, 0.05) 1px, transparent 1px) 0 0 / 100px 100%;
}

/* Hero Section - The Masterpiece */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-main-img {
    position: absolute;
    width: 120%;
    height: 120%;
    background: url('assets/transform.png') no-repeat center center;
    background-size: cover;
    z-index: 2;
    filter: brightness(0.7) contrast(1.2);
    transform: scale(1.1);
    animation: zoom-out 20s infinite alternate;
}

@keyframes zoom-out {
    from { transform: scale(1.1) rotate(0deg); }
    to { transform: scale(1) rotate(1deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(transparent 30%, rgba(0,0,0,0.8));
    z-index: 3;
}

.hero-text {
    z-index: 10;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 8vw;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 0.8;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, var(--bumblebee-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.hero-text p {
    font-family: 'Share Tech Mono';
    font-size: 1.5rem;
    color: var(--energon-blue);
    letter-spacing: 10px;
    text-transform: uppercase;
}

/* Sections - Premium Content */
section {
    padding: 150px 10%;
    position: relative;
    background: var(--midnight-black);
}

.section-header {
    margin-bottom: 100px;
}

.section-tag {
    font-family: 'Share Tech Mono';
    color: var(--bumblebee-yellow);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Orbitron';
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    width: 80px;
    height: 4px;
    background: var(--energon-blue);
    box-shadow: 0 0 15px var(--energon-blue);
}

/* Character Info Grid */
.dossier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dossier-text {
    font-size: 1.2rem;
    color: #ccc;
}

.dossier-text h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Orbitron';
}

.info-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px;
    margin-top: 40px;
    position: relative;
}

.info-box::after {
    content: 'DECRYPTED';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--bumblebee-yellow);
    color: #000;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-family: 'Share Tech Mono';
}

/* Cinematic Feature Cards */
.feature-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    flex: 1;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--carbon-fiber);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-cinematic);
}

.feature-card:hover {
    flex: 2;
    border-color: var(--bumblebee-yellow);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6);
    transition: var(--transition-cinematic);
}

.feature-card:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100px);
    transition: var(--transition-cinematic);
}

.feature-card:hover .card-content {
    transform: translateY(0);
}

/* Profile Sliders / Gallery */
.allies-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ally-profile {
    position: relative;
    overflow: hidden;
}

.ally-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 5px solid var(--metal-trim);
}

.ally-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ally-profile:hover .ally-img img {
    transform: scale(1.1);
}

.ally-info {
    padding: 20px 0;
}

.ally-info h4 {
    font-family: 'Orbitron';
    font-size: 1.5rem;
    color: var(--bumblebee-yellow);
}

/* Form Styles - Advanced */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group.full {
    grid-column: span 2;
}

.input-group label {
    font-family: 'Share Tech Mono';
    color: var(--energon-blue);
    font-size: 0.8rem;
}

.input-group input, .input-group textarea {
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Rajdhani';
    font-size: 1rem;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--bumblebee-yellow);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.btn-transmit {
    grid-column: span 2;
    padding: 25px;
    background: var(--bumblebee-yellow);
    color: #000;
    font-family: 'Orbitron';
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-transmit:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--bumblebee-yellow);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .dossier-grid, .contact-form, .feature-cards {
        grid-template-columns: 1fr;
        display: block;
    }
    .feature-card {
        height: 400px;
        margin-bottom: 20px;
    }
    .allies-gallery {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 15vw;
    }
}

/* Weaponry Section */
.weaponry-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: center;
}

.weapon-card {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid var(--energon-blue);
    padding: 50px;
    position: relative;
}

.weapon-card h3 {
    color: var(--energon-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.weapon-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-chip {
    padding: 10px 20px;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid var(--energon-blue);
    font-family: 'Share Tech Mono';
    font-size: 0.8rem;
    color: var(--energon-blue);
}

/* History Timeline v2 */
.archive-log {
    margin-top: 80px;
}

.log-entry {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.log-date {
    font-family: 'Syncopate';
    font-weight: 700;
    color: var(--bumblebee-yellow);
    font-size: 1.5rem;
    min-width: 200px;
}

.log-content h4 {
    font-family: 'Orbitron';
    margin-bottom: 10px;
    color: #fff;
}

/* Vocal Module Overlay */
.vocal-module {
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 5px solid var(--bumblebee-yellow);
    margin-top: 50px;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    margin-top: 20px;
}

.bar {
    width: 3px;
    height: 10px;
    background: var(--bumblebee-yellow);
    animation: wave 1.2s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 40px; }
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .weaponry-grid { grid-template-columns: 1fr; }
    .log-entry { flex-direction: column; gap: 10px; }
    .log-date { min-width: auto; }
}



