/* ===== FUSION THEME: NEON CYBER + WESTERN FRONTIER ===== */

:root {
    /* Cyber/Digital Colors */
    --cyber-primary: #5b9bd5;
    --cyber-secondary: #7eb8e0;
    --cyber-accent: #8b9fd4;
    --cyber-bg: #0a0e27;
    --cyber-dark: #050816;

    /* Western Colors */
    --desert-sand: #e8d5b7;
    --dusty-brown: #8b7355;
    --leather-brown: #6b4423;
    --dark-wood: #3d2817;
    --rusty-red: #8b0000;
    --gold-rush: #c17817;
    --sunset-orange: #d4681e;
    --parchment: #f4e8d0;

    /* Shared */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(to right, var(--cyber-dark) 0%, #1a1a2e 50%, var(--dark-wood) 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}



/* ===== NAVIGATION ORB ===== */
.orb-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.nav-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyber-primary) 0%, var(--gold-rush) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transition: var(--transition-smooth);
}

.nav-orb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.orb-icon {
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
}

.orb-icon::before,
.orb-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    left: 0;
}

.orb-icon::before { top: -8px; }
.orb-icon::after { top: 8px; }

.orb-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    border: 1px solid var(--cyber-primary);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.orb-nav:hover .orb-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.orb-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.8rem;
    margin: 0.3rem 0;
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}

.orb-menu a:hover {
    border-left-color: var(--cyber-primary);
    background: rgba(0, 255, 136, 0.1);
    padding-left: 1.2rem;
}

/* ===== DUAL HERO SECTION ===== */
.dual-hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.world {
    flex: 1;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    will-change: transform;
}

.world:hover {
    transform: scale(1.02);
}

.world:hover .world-overlay {
    opacity: 0.8;
}

/* ===== LEFT SIDE: NEON/CYBER ===== */
.neon-world {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #0a0e27 50%, #1a1a2e 100%);
}

.neon-world:hover .glitch-text {
    animation: glitchAnimation 0.3s ease-out;
    text-shadow:
        0 0 20px var(--cyber-primary),
        0 0 40px var(--cyber-primary),
        0 0 60px var(--cyber-primary);
}

.neon-world:hover .neon-grid {
    opacity: 0.2;
    animation-duration: 10s;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--cyber-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyber-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: gridFlow 20s linear infinite;
    will-change: transform, opacity;
}

@keyframes gridFlow {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.glitch-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--cyber-primary);
    text-shadow:
        0 0 10px var(--cyber-primary),
        0 0 20px var(--cyber-primary),
        0 0 40px var(--cyber-primary);
    position: relative;
    animation: glitchAnimation 3s infinite;
    will-change: transform, text-shadow;
}

@keyframes glitchAnimation {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.neon-subtitle {
    color: var(--cyber-secondary);
    text-shadow: 0 0 10px var(--cyber-secondary);
}

.data-stream {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.data-point {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--cyber-primary);
    color: var(--cyber-primary);
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    animation: dataPulse 2s ease-in-out infinite;
}

.data-point:nth-child(odd) {
    animation-delay: 0.3s;
}

@keyframes dataPulse {
    0%, 100% { box-shadow: 0 0 5px var(--cyber-primary); }
    50% { box-shadow: 0 0 20px var(--cyber-primary); }
}

/* ===== RIGHT SIDE: WESTERN/FRONTIER ===== */
.western-world {
    background:
        linear-gradient(to bottom, #2d1b16 0%, #1a1a2e 50%, #2d1b16 100%),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(139, 115, 85, 0.03) 2px,
            transparent 4px
        );
}

.western-world:hover .western-text {
    text-shadow:
        4px 4px 0 var(--dark-wood),
        -2px -2px 0 var(--sunset-orange),
        0 0 20px var(--gold-rush);
    transform: scale(1.05);
}

.western-world:hover .star {
    animation: twinkle 1s ease-in-out infinite;
}

.western-world:hover .wanted-stamp {
    opacity: 0.4;
    transform: rotate(-10deg);
}

.desert-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px white;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 60%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.star:nth-child(4) { top: 30%; left: 80%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 70%; left: 50%; animation-delay: 2s; }

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

.tumbleweed-container {
    position: absolute;
    bottom: 10%;
    left: -100px;
    animation: tumble 15s linear infinite;
}

@keyframes tumble {
    0% { left: -100px; transform: rotate(0deg); }
    100% { left: calc(100% + 100px); transform: rotate(720deg); }
}

.tumbleweed {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--dusty-brown);
    position: relative;
    opacity: 0.5;
}

.tumbleweed::before,
.tumbleweed::after {
    content: '';
    position: absolute;
    border: 1px solid var(--dusty-brown);
    border-radius: 50%;
}

.tumbleweed::before {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.tumbleweed::after {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

.wanted-stamp {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 3rem;
    font-weight: 900;
    color: var(--rusty-red);
    opacity: 0.2;
    transform: rotate(-15deg);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3rem;
    border: 5px solid var(--rusty-red);
    padding: 1rem 2rem;
}

.western-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold-rush);
    text-shadow:
        3px 3px 0 var(--dark-wood),
        -1px -1px 0 var(--sunset-orange);
    position: relative;
    font-family: 'Impact', sans-serif;
    transition: var(--transition-smooth);
    will-change: transform, text-shadow;
}

.western-subtitle {
    color: var(--parchment);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.western-ticker .ticker-track span {
    color: var(--gold-rush);
    text-shadow: 0 0 10px var(--gold-rush);
}

/* ===== DIVIDER LINE ===== */
.divider-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(
        to bottom,
        var(--cyber-primary) 0%,
        var(--cyber-accent) 25%,
        var(--gold-rush) 75%,
        var(--rusty-red) 100%
    );
    transform: translateX(-50%);
    z-index: 10;
    box-shadow:
        -5px 0 20px var(--cyber-primary),
        5px 0 20px var(--gold-rush);
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    box-shadow:
        0 0 20px var(--cyber-primary),
        0 0 40px var(--gold-rush);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.duality-badge {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.8rem;
}

.badge-cyber {
    color: var(--cyber-primary);
    text-shadow: 0 0 10px var(--cyber-primary);
}

.badge-divider {
    color: white;
    font-size: 1.5rem;
}

.badge-western {
    color: var(--gold-rush);
    text-shadow: 0 0 10px var(--gold-rush);
}

.flowing-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    writing-mode: vertical-rl;
    animation: flowText 3s ease-in-out infinite;
}

@keyframes flowText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== WORLD CONTENT ===== */
.world-content {
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.world-details {
    margin-top: 2rem;
}

.pulsing-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.location-ticker {
    overflow: hidden;
    margin-top: 2rem;
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: tickerScroll 20s linear infinite;
}

.ticker-track span {
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: bold;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.world-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.neon-overlay {
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

.western-overlay {
    background: radial-gradient(circle at 70% 50%, rgba(193, 120, 23, 0.1) 0%, transparent 50%);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* ===== FUSION SECTION ===== */
.fusion-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #0a0e27 0%, #1a1a2e 50%, #2d1b16 100%);
    position: relative;
}

.fusion-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fusion-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.word-split {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.cyber-word { }

.fusion-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.fusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ===== FUSION CARDS ===== */
.fusion-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition-smooth);
    cursor: pointer;
    will-change: transform;
}

.cyber-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 2px solid var(--cyber-primary);
}

.cyber-card .card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyber-primary);
}

.card-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.card-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.card-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.card-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.hybrid-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(193, 120, 23, 0.1) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush)) 1;
}

.western-card {
    background: linear-gradient(135deg, rgba(193, 120, 23, 0.2) 0%, rgba(61, 40, 23, 0.9) 100%);
    border: 3px solid var(--gold-rush);
}

.western-card .nail {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #4a4a4a 40%, #2a2a2a 100%);
    border-radius: 50%;
}

.nail.tl { top: 10px; left: 10px; }
.nail.tr { top: 10px; right: 10px; }
.nail.bl { bottom: 10px; left: 10px; }
.nail.br { bottom: 10px; right: 10px; }

.fusion-card:hover {
    transform: translateY(-10px);
}

.cyber-card:hover { }
.hybrid-card:hover { }
.western-card:hover { }

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cyber-glow { background: none; }
.hybrid-glow { background: none; }
.western-glow { background: none; }

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.cyber-icon {
    color: var(--cyber-primary);
}

.hybrid-icon {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.western-icon {
    color: var(--gold-rush);
}

.icon-svg {
    width: 100%;
    height: 100%;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cyber-card h3 { color: var(--cyber-primary); }
.hybrid-card h3 {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.western-card h3 { color: var(--gold-rush); }

.card-content p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

.cyber-card .stat-number { color: var(--cyber-primary); }
.hybrid-card .stat-number {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.western-card .stat-number { color: var(--gold-rush); }

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* ===== PHILOSOPHY BOX ===== */
.philosophy-box {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(193, 120, 23, 0.05) 100%);
    border-left: 4px solid var(--cyber-primary);
    border-right: 4px solid var(--gold-rush);
    margin: 4rem auto;
    max-width: 900px;
}

.quote-mark {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
    opacity: 0.3;
}

.cyber-quote {
    color: var(--cyber-primary);
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.western-quote {
    color: var(--gold-rush);
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.philosophy-text {
    font-size: 1.3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 2rem 0;
}

.philosophy-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.signature-line {
    flex: 1;
    height: 2px;
}

.cyber-line {
    background: linear-gradient(to right, transparent, var(--cyber-primary));
}

.western-line {
    background: linear-gradient(to left, transparent, var(--gold-rush));
}

.signature-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(to right, var(--cyber-dark) 0%, #1a1a2e 50%, var(--dark-wood) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cyber-contact {
    color: var(--cyber-primary);
    text-shadow: 0 0 20px var(--cyber-primary);
}

.western-contact {
    color: var(--gold-rush);
    text-shadow: 0 0 20px var(--gold-rush);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.cyber-method {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--cyber-primary);
}

.cyber-method:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.hybrid-method {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(193, 120, 23, 0.05));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush)) 1;
}

.hybrid-method:hover {
    box-shadow:
        0 5px 15px rgba(0, 255, 136, 0.2),
        0 5px 15px rgba(193, 120, 23, 0.2);
}

.western-method {
    background: rgba(193, 120, 23, 0.1);
    border: 2px solid var(--gold-rush);
}

.western-method:hover {
    background: rgba(193, 120, 23, 0.15);
    box-shadow: 0 10px 30px rgba(193, 120, 23, 0.3);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cyber-method .method-icon { color: var(--cyber-primary); }
.hybrid-method .method-icon {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.western-method .method-icon { color: var(--gold-rush); }

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cyber-method .contact-link:hover { color: var(--cyber-primary); }
.hybrid-method .contact-link:hover {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.western-method .contact-link:hover { color: var(--gold-rush); }

.cta-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(193, 120, 23, 0.05));
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush)) 1;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    position: relative;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 30px var(--cyber-primary),
        0 0 30px var(--gold-rush);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 2rem;
    background: linear-gradient(to right, var(--cyber-dark) 0%, var(--dark-wood) 100%);
    border-top: 2px solid;
    border-image: linear-gradient(to right, var(--cyber-primary), var(--gold-rush)) 1;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cyber-text {
    color: var(--cyber-primary);
}

.footer-amp {
    margin: 0 0.5rem;
    color: white;
}

.western-text {
    color: var(--gold-rush);
}

.footer-year {
    color: rgba(255, 255, 255, 0.5);
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* ===== BACKGROUND GRID ===== */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(193, 120, 23, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #2d1b16 0%, #0a0e27 50%, #1a1a2e 100%);
    position: relative;
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
}

.experience-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.experience-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.experience-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid;
    border-image: linear-gradient(to bottom, rgba(91, 155, 213, 0.5), var(--gold-rush)) 1;
}

.timeline-group-label {
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    margin: 2.5rem 0 1.5rem -2.8rem;
    padding: 0.4rem 1rem;
    display: inline-block;
    border-radius: 4px;
}

.cyber-label {
    color: rgba(91, 155, 213, 0.9);
    background: rgba(91, 155, 213, 0.08);
    border: 1px solid rgba(91, 155, 213, 0.35);
}

.western-label {
    color: rgba(193, 120, 23, 0.9);
    background: rgba(193, 120, 23, 0.08);
    border: 1px solid rgba(193, 120, 23, 0.45);
}

.hybrid-label {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(193, 120, 23, 0.1));
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush)) 1;
    background-clip: text;
    -webkit-background-clip: text;
    color: white;
}

.exp-entry {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.exp-dot {
    position: absolute;
    left: -2.45rem;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid;
}

.cyber-dot {
    background: rgba(91, 155, 213, 0.8);
    border-color: rgba(91, 155, 213, 0.6);
    box-shadow: 0 0 5px rgba(91, 155, 213, 0.3);
}

.western-dot {
    background: var(--gold-rush);
    border-color: var(--gold-rush);
    box-shadow: 0 0 10px var(--gold-rush);
}

.hybrid-dot {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 6px rgba(91, 155, 213, 0.3), 0 0 6px rgba(193, 120, 23, 0.3);
}

.exp-card {
    padding: 1.5rem 2rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.exp-card:hover {
    transform: translateX(6px);
}

.cyber-expcard {
    background: rgba(91, 155, 213, 0.04);
    border: 1px solid rgba(91, 155, 213, 0.25);
}

.cyber-expcard:hover {
    border-color: rgba(91, 155, 213, 0.55);
    box-shadow: 0 5px 20px rgba(91, 155, 213, 0.12);
}

.western-expcard {
    background: rgba(193, 120, 23, 0.07);
    border: 1px solid rgba(193, 120, 23, 0.4);
}

.western-expcard:hover {
    border-color: var(--gold-rush);
    box-shadow: 0 5px 25px rgba(193, 120, 23, 0.2);
}

.hybrid-expcard {
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.04), rgba(193, 120, 23, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hybrid-expcard:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 5px 15px rgba(91, 155, 213, 0.1),
        0 5px 15px rgba(193, 120, 23, 0.1);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.exp-company {
    font-size: 1.2rem;
    font-weight: bold;
}

.cyber-company { color: var(--cyber-primary); }
.western-company { color: var(--gold-rush); }
.hybrid-company {
    background: linear-gradient(135deg, var(--cyber-primary), var(--gold-rush));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.exp-role {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.exp-preview {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.exp-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.05rem;
}

.cyber-tag {
    color: rgba(91, 155, 213, 0.9);
    background: rgba(91, 155, 213, 0.07);
    border: 1px solid rgba(91, 155, 213, 0.25);
}

.western-tag {
    color: var(--gold-rush);
    background: rgba(193, 120, 23, 0.1);
    border: 1px solid rgba(193, 120, 23, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .dual-hero {
        flex-direction: column;
    }

    .divider-line {
        left: 0;
        top: 50%;
        width: 100%;
        height: 4px;
        transform: translateY(-50%);
    }

    .pulse-circle {
        left: 50%;
        top: 50%;
    }

    .duality-badge {
        left: 30%;
        flex-direction: row;
    }

    .flowing-text {
        writing-mode: horizontal-tb;
        bottom: 40%;
    }
}

/* ===== DETAIL PAGES ===== */
.detail-page {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a2e 100%);
    min-height: 100vh;
}

.back-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
    color: var(--cyber-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.08rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(91, 155, 213, 0.35);
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.back-btn:hover {
    border-color: var(--cyber-primary);
    background: rgba(91, 155, 213, 0.1);
}

.detail-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(91, 155, 213, 0.15);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(5, 8, 22, 0.65) 0%,
        rgba(5, 8, 22, 0.5) 50%,
        rgba(5, 8, 22, 0.85) 100%
    );
    z-index: 0;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
}

.detail-company {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cyber-primary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05rem;
}

.detail-meta {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.detail-main {
    padding: 4rem 2rem 6rem;
}

.detail-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-section {
    padding: 2rem;
    border-left: 3px solid rgba(91, 155, 213, 0.35);
    background: rgba(91, 155, 213, 0.03);
    border-radius: 0 10px 10px 0;
}

.detail-section-title {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: rgba(91, 155, 213, 0.75);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.detail-text {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.achievement-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.8rem;
    position: relative;
}

.achievement-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyber-primary);
}

.exp-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.exp-link .exp-card {
    cursor: pointer;
}

.view-detail {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(91, 155, 213, 0.6);
    letter-spacing: 0.1rem;
    transition: var(--transition-smooth);
}

.exp-link:hover .view-detail {
    color: var(--cyber-primary);
}

@media (max-width: 768px) {
    .detail-company { font-size: 2.4rem; }
    .back-btn { top: 1rem; left: 1rem; font-size: 0.8rem; }
    .detail-hero { padding: 6rem 1.5rem 3rem; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .glitch-text,
    .western-text {
        font-size: 3rem;
    }

    .fusion-title,
    .experience-title {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .exp-header {
        flex-direction: column;
    }

    .fusion-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-text {
        font-size: 1.1rem;
    }
}