/* ===================================
   CIRVION GAMING - NFS CARBON THEME
   Need for Speed Carbon Inspired Design
   =================================== */

/* Import Gaming Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ===================================
   NFS CARBON COLOR VARIABLES
   =================================== */
:root {
    /* Primary Colors - Dark Theme */
    --gaming-black: #0a0a0a;
    --gaming-charcoal: #151515;
    --gaming-dark: #1a1a1a;
    --gaming-darker: #0d0d0d;

    /* Orange Accents - NFS Carbon Signature */
    --gaming-orange: #FF6B00;
    --gaming-orange-light: #FF8C00;
    --gaming-orange-dark: #CC5500;
    --gaming-orange-glow: rgba(255, 107, 0, 0.5);

    /* Metallic/Chrome Elements */
    --gaming-silver: #C0C0C0;
    --gaming-chrome: #E8E8E8;
    --gaming-metal-dark: #8B8B8B;

    /* Purple/Blue Undertones */
    --gaming-purple: #2D1B69;
    --gaming-blue-dark: #1a1a2e;
    --gaming-blue-accent: #0D47A1;

    /* Utility Colors */
    --gaming-white: #ffffff;
    --gaming-gray: #666666;
    --gaming-gray-light: #999999;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background: var(--gaming-black);
    color: var(--gaming-white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   PARTICLE BACKGROUND
   =================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   NAVIGATION
   =================================== */
.gaming-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--gaming-orange);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    height: 80px;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--gaming-orange-glow));
    transition: transform var(--transition-base);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--gaming-orange));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gaming-chrome);
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-base);
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--gaming-orange-light));
    transition: width var(--transition-base);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--gaming-orange);
    text-shadow: 0 0 10px var(--gaming-orange-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gaming-orange);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.gaming-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gaming-black) 0%, var(--gaming-charcoal) 50%, var(--gaming-dark) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Scanline Effect */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 107, 0, 0.05) 50%,
            transparent 100%);
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gaming-chrome) 0%, var(--gaming-orange) 50%, var(--gaming-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 40px var(--gaming-orange-glow);
    animation: glitchText 5s infinite;
}

/* Glitch Text Effect */
.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 var(--gaming-orange);
    top: 0;
    color: var(--gaming-orange);
    background: transparent;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }

    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }

    10% {
        clip: rect(48px, 9999px, 29px, 0);
    }

    15% {
        clip: rect(42px, 9999px, 73px, 0);
    }

    20% {
        clip: rect(63px, 9999px, 27px, 0);
    }

    25% {
        clip: rect(34px, 9999px, 55px, 0);
    }

    30% {
        clip: rect(86px, 9999px, 73px, 0);
    }

    35% {
        clip: rect(20px, 9999px, 20px, 0);
    }

    40% {
        clip: rect(26px, 9999px, 60px, 0);
    }

    45% {
        clip: rect(25px, 9999px, 66px, 0);
    }

    50% {
        clip: rect(57px, 9999px, 98px, 0);
    }

    55% {
        clip: rect(5px, 9999px, 46px, 0);
    }

    60% {
        clip: rect(82px, 9999px, 31px, 0);
    }

    65% {
        clip: rect(54px, 9999px, 27px, 0);
    }

    70% {
        clip: rect(28px, 9999px, 99px, 0);
    }

    75% {
        clip: rect(45px, 9999px, 45px, 0);
    }

    80% {
        clip: rect(23px, 9999px, 85px, 0);
    }

    85% {
        clip: rect(54px, 9999px, 84px, 0);
    }

    90% {
        clip: rect(45px, 9999px, 47px, 0);
    }

    95% {
        clip: rect(37px, 9999px, 20px, 0);
    }

    100% {
        clip: rect(4px, 9999px, 91px, 0);
    }
}

@keyframes glitchText {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--gaming-chrome);
    margin-bottom: var(--space-md);
    letter-spacing: 3px;
    min-height: 50px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gaming-gray-light);
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS - GAMING STYLE
   =================================== */
.btn-gaming {
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary-gaming {
    background: linear-gradient(135deg, var(--gaming-orange) 0%, var(--gaming-orange-light) 100%);
    color: var(--gaming-black);
    box-shadow: 0 0 20px var(--gaming-orange-glow);
}

.btn-primary-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-gaming:hover::before {
    left: 100%;
}

.btn-primary-gaming:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--gaming-orange);
}

.btn-outline-gaming {
    background: transparent;
    color: var(--gaming-orange);
    border: 2px solid var(--gaming-orange);
    box-shadow: inset 0 0 20px rgba(255, 107, 0, 0.1);
}

.btn-outline-gaming:hover {
    background: var(--gaming-orange);
    color: var(--gaming-black);
    box-shadow: 0 0 40px var(--gaming-orange);
    transform: translateY(-3px);
}

/* ===================================
   GAMING SECTIONS
   =================================== */
.gaming-section {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--gaming-charcoal);
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gaming-chrome), var(--gaming-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gaming-orange), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gaming-gray-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===================================
   GAMING CARDS GRID
   =================================== */
.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--space-2xl);
}

.gaming-card {
    position: relative;
    background: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 2rem;
    transition: all var(--transition-base);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gaming-orange-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.gaming-card:hover .card-glow {
    opacity: 1;
}

.gaming-card:hover {
    transform: translateY(-10px);
    border-color: var(--gaming-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
}

.card-content {
    position: relative;
    z-index: 10;
}

.card-icon {
    font-size: 3rem;
    color: var(--gaming-orange);
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 10px var(--gaming-orange-glow));
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gaming-chrome);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.card-description {
    color: var(--gaming-gray-light);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.card-features {
    list-style: none;
    padding: 0;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--gaming-gray-light);
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gaming-orange);
    font-weight: bold;
}

/* ===================================
   GAMING EXPERIENCE SECTION
   =================================== */
.gaming-experience {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--gaming-black);
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(45, 27, 105, 0.2) 100%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: var(--space-2xl) 0;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(21, 21, 21, 0.5);
    border: 1px solid rgba(255, 107, 0, 0.3);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all var(--transition-base);
}

.stat-item:hover {
    border-color: var(--gaming-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gaming-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--gaming-orange-glow);
}

.stat-label {
    font-size: 1rem;
    color: var(--gaming-gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 10;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all var(--transition-base);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gaming-orange);
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 15px var(--gaming-orange-glow));
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gaming-chrome);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.feature-desc {
    color: var(--gaming-gray-light);
    line-height: 1.8;
}

/* ===================================
   GAMING CONTACT SECTION
   =================================== */
.gaming-contact {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--gaming-charcoal);
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: var(--space-2xl);
}

.gaming-form {
    background: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gaming-chrome);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--gaming-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all var(--transition-base);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gaming-orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-gaming {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gaming-orange), var(--gaming-orange-light));
    color: var(--gaming-black);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all var(--transition-base);
    box-shadow: 0 0 20px var(--gaming-orange-glow);
}

.btn-submit-gaming:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--gaming-orange);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(21, 21, 21, 0.5);
    border: 1px solid rgba(255, 107, 0, 0.2);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all var(--transition-base);
}

.info-item:hover {
    border-color: var(--gaming-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--gaming-orange);
    filter: drop-shadow(0 0 10px var(--gaming-orange-glow));
}

.info-content {
    flex: 1;
}

.info-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gaming-gray-light);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 1.1rem;
    color: var(--gaming-white);
    font-weight: 500;
}

/* ===================================
   FOOTER
   =================================== */
.gaming-footer {
    background: var(--gaming-darker);
    border-top: 2px solid var(--gaming-orange);
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--gaming-gray-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gaming-gray-light);
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--gaming-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--gaming-gray);
    font-size: 0.9rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   ADVANCED ANIMATIONS & EFFECTS
   =================================== */

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gaming-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gaming-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--gaming-orange-glow);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gaming-orange-glow), transparent);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.parallax-bg {
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* Animated Gradient Background */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orb-float 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gaming-orange) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gaming-purple) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gaming-orange-light) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Text Shimmer Effect */
.text-shimmer {
    background: linear-gradient(90deg,
            var(--gaming-chrome) 0%,
            var(--gaming-orange) 25%,
            var(--gaming-chrome) 50%,
            var(--gaming-orange) 75%,
            var(--gaming-chrome) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-slide 3s linear infinite;
}

@keyframes shimmer-slide {
    to {
        background-position: 200% center;
    }
}

/* Magnetic Button Effect */
.btn-gaming.magnetic {
    transition: transform 0.2s ease;
}

/* Floating Elements */
.float-element {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Enhanced Card Hover with Perspective */
.gaming-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-content {
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

/* Neon Pulse Effect */
.neon-pulse {
    animation: neon-pulse-animation 2s ease-in-out infinite;
}

@keyframes neon-pulse-animation {

    0%,
    100% {
        text-shadow: 0 0 10px var(--gaming-orange-glow),
            0 0 20px var(--gaming-orange-glow),
            0 0 30px var(--gaming-orange-glow);
    }

    50% {
        text-shadow: 0 0 20px var(--gaming-orange-glow),
            0 0 30px var(--gaming-orange-glow),
            0 0 40px var(--gaming-orange-glow),
            0 0 50px var(--gaming-orange-glow);
    }
}

/* Glowing Border Animation */
.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            var(--gaming-orange),
            transparent 30%);
    animation: rotate-border 4s linear infinite;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--gaming-charcoal);
    border-radius: inherit;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Particle Burst Effect */
@keyframes particle-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Smooth Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gaming-black);
    z-index: 9999;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .gaming-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-base);
        border-top: 2px solid var(--gaming-orange);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .gaming-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .experience-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }
}