/* ==========================================================================
   KENNETH DE VERA - PORTFOLIO DESIGN SYSTEM
   Theme Palette: Black, Dark Grey, Electric Yellow, Cyber Blue, Pure White
   Target Directory: C:\xampps\htdocs\DeVera_Kenneth\Portfolio\PORTFOLIO\style.css
   ========================================================================== */

:root {
    --bg-black: #08080a;
    --bg-dark-grey: #0f1015;
    --bg-panel: rgba(18, 20, 26, 0.92);
    --bg-panel-border: rgba(255, 255, 255, 0.08);

    --grey-border: #2b2d3a;
    --grey-light: #9499ad;
    --grey-dark: #161720;

    --yellow: #FFE600;
    --yellow-hover: #e5ce00;
    --yellow-glow: rgba(255, 230, 0, 0.25);

    --blue: #00E5FF;
    --blue-hover: #00b8cc;
    --blue-glow: rgba(0, 229, 255, 0.25);

    --text-white: #ffffff;
    --text-muted: #a0a5b5;
    --text-subtle: #6b7280;

    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-pill: 9999px;
    --radius-card: 20px;
    --radius-sm: 12px;

    --transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: #08080a;
    color: var(--text-white);
}

body {
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
    background-color: transparent !important;
    background: transparent !important;
}

/* GPU Accelerated Fixed Background Layer (Zero Scroll Stutter) */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: #08080a;
    background-image: 
        linear-gradient(rgba(8, 8, 10, 0.76), rgba(8, 8, 10, 0.76)),
        url('images/backgroud.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
}


/* iOS Safari Fix: background-attachment: fixed causes GPU crash on Mobile Safari */
@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll !important;
    }
}

/* Background Canvas Overlay */
#netCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: transparent;
}

/* Background Ambient Neon Glow Designs (Zero-RAM & Zero-GPU Overhead) */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-yellow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.07) 0%, rgba(255, 230, 0, 0) 70%);
    top: -100px;
    left: -150px;
}

.glow-blue {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, rgba(0, 229, 255, 0) 70%);
    bottom: -100px;
    right: -150px;
}

/* Background Ambient Cyber Spiral Animations (100% GPU Accelerated - Zero Lag) */
.cyber-spiral-bg {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
    border: 1.5px dashed rgba(255, 230, 0, 0.2);
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.1);
    will-change: transform;
    transform: translateZ(0);
}

.cyber-spiral-bg::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 2px dotted rgba(0, 229, 255, 0.35);
}

.cyber-spiral-bg::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 35%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 230, 0, 0.4);
}

.spiral-top-left {
    width: 550px;
    height: 550px;
    top: -120px;
    left: -120px;
    animation: spiralSpin 25s linear infinite;
}

.spiral-bottom-right {
    width: 650px;
    height: 650px;
    bottom: -150px;
    right: -150px;
    animation: spiralSpinRev 30s linear infinite;
}

@keyframes spiralSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.08); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes spiralSpinRev {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-180deg) scale(1.06); }
    100% { transform: rotate(-360deg) scale(1); }
}


@media (max-width: 768px) {
    body {
        background-color: #08080a !important;
        background-image: none !important;
        background: #08080a !important;
    }
    body::before {
        display: none !important;
    }
    .ambient-glow, .cyber-spiral-bg, #netCanvas, .desktop-bg-layer {
        display: none !important;
    }
    .glass-panel, .social-card, .who-am-i-box, .about-card, .project-card, .pill-navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(18, 20, 28, 0.95) !important;
    }
}




@keyframes floatOrbYellow {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.16; }
    50% { transform: translate3d(60px, 40px, 0) scale(1.15); opacity: 0.24; }
    100% { transform: translate3d(-30px, 80px, 0) scale(0.95); opacity: 0.16; }
}

@keyframes floatOrbBlue {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.16; }
    50% { transform: translate3d(-70px, -50px, 0) scale(1.2); opacity: 0.26; }
    100% { transform: translate3d(40px, -90px, 0) scale(0.9); opacity: 0.16; }
}




/* ==========================================================================
   TOP NAVIGATION PILL (NO LOGO - CENTERED LINKS)
   ========================================================================== */
.nav-container {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0 20px;
}

.pill-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 15, 21, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    will-change: transform;
    transform: translateZ(0);
}

.pill-navbar:hover {
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 230, 0, 0.1);
}

.mobile-menu-header, .mobile-menu-footer {
    display: none;
}

/* Animated Hamburger Menu Button for Mobile */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.hamburger-btn .bar {
    position: absolute;
    left: 9px;
    width: 22px;
    height: 2.5px;
    background-color: var(--yellow);
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.3s ease;
    transform-origin: center center;
}

.hamburger-btn .bar1 { top: 12px; }
.hamburger-btn .bar2 { top: 19px; }
.hamburger-btn .bar3 { top: 26px; }

/* Animated Morph from 3 lines to Perfect Symmetrical X Cross */
.hamburger-btn.active .bar1 {
    top: 19px;
    transform: rotate(45deg);
    background-color: var(--blue);
}

.hamburger-btn.active .bar2 {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .bar3 {
    top: 19px;
    transform: rotate(-45deg);
    background-color: var(--blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: var(--yellow);
    background: rgba(255, 230, 0, 0.12);
    font-weight: 600;
    box-shadow: inset 0 0 12px rgba(255, 230, 0, 0.15);
}

/* Layout Wrappers & Panels */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 1;
}

.glass-panel {
    background: rgba(18, 20, 26, 0.96);
    border: 1px solid var(--bg-panel-border);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style paint;
}


.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

.text-yellow { color: var(--yellow) !important; }
.text-blue { color: var(--blue) !important; }

/* Headings */
.section-block {
    padding: 90px 0;
    contain: layout style paint;
}

.section-heading-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtext {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-white);
}

.section-intro {
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 1rem;
}

.section-intro code {
    background: rgba(255, 230, 0, 0.1);
    color: var(--yellow);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--blue));
    margin: 16px auto 0;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.6), 0 0 10px rgba(0, 229, 255, 0.6);
}

/* ==========================================================================
   HERO / WHO AM I SECTION (Clean Reference Image Match)
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-container {
    max-width: 720px;
    width: 100%;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-white);
    letter-spacing: -1px;
}

/* Reference Image Box Design */
.who-am-i-box {
    background: rgba(18, 20, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 36px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    will-change: transform;
    transform: translateZ(0);
    contain: layout style paint;
}

.bio-main {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #e2e8f0;
    margin-bottom: 18px;
}

.bio-lorem {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.highlight-yellow {
    color: var(--text-white);
    font-weight: 700;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-resume {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-white);
    color: var(--bg-black);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-resume:hover {
    background: var(--yellow);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--yellow-glow);
}

.btn-experience {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
}

.btn-experience:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 20px var(--blue-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT ME SECTION
   ========================================================================== */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin: 16px 0 12px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.box-yellow {
    background: rgba(255, 230, 0, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(255, 230, 0, 0.3);
}

.box-blue {
    background: rgba(0, 229, 255, 0.12);
    color: var(--blue);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.check-list {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tech-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.tech-tags-grid span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    will-change: transform;
}

.tech-tags-grid span:hover {
    transform: translateY(-4px) scale(1.04);
    background: rgba(255, 230, 0, 0.15);
    border-color: var(--yellow);
    color: var(--yellow);
    box-shadow: 0 8px 20px rgba(255, 230, 0, 0.3);
}

.tech-tags-grid span:has(.text-blue):hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.full-width-card {
    grid-column: 1 / -1;
}

.stats-counter-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   EXPERIENCE TIMELINE SECTION
   ========================================================================== */
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.timeline-item {
    padding: 30px;
    border-left: 4px solid var(--yellow);
    position: relative;
    transition: var(--transition);
}

.timeline-item:hover {
    border-left-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(0, 229, 255, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.timeline-role h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 8px;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-badge.yellow {
    background: rgba(255, 230, 0, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(255, 230, 0, 0.3);
}

.timeline-badge.blue {
    background: rgba(0, 229, 255, 0.12);
    color: var(--blue);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.timeline-date {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-desc {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.timeline-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-points li {
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.timeline-points li i {
    font-size: 0.75rem;
    margin-top: 4px;
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-header-banner {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #14151c;
}

.project-header-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 9, 12, 0.65) 0%, rgba(8, 9, 12, 0.15) 50%, rgba(8, 9, 12, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-img {
    transform: scale(1.06);
}

.project-fallback-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
}

.theme-yellow { background: linear-gradient(135deg, #1d1e28, #2a2512); }
.theme-blue { background: linear-gradient(135deg, #121e2b, #152230); }

.badge-category {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.badge-category.yellow {
    background: rgba(12, 13, 18, 0.92);
    color: var(--yellow);
    border: 1.5px solid var(--yellow);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

.badge-category.blue {
    background: rgba(12, 13, 18, 0.92);
    color: var(--blue);
    border: 1.5px solid var(--blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.project-center-icon i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.project-card:hover .project-center-icon i {
    color: var(--text-white);
    transform: scale(1.15);
}

.project-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.project-tags span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
}

.project-name {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.project-snippet {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-footer-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
}

.btn-launch.btn-yellow {
    background: var(--yellow);
    color: var(--bg-black);
}

.btn-launch.btn-yellow:hover {
    background: var(--yellow-hover);
    box-shadow: 0 0 15px var(--yellow-glow);
}

.btn-launch.btn-blue {
    background: var(--blue);
    color: var(--bg-black);
}

.btn-launch.btn-blue:hover {
    background: var(--blue-hover);
    box-shadow: 0 0 15px var(--blue-glow);
}

.btn-info {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   CONTACT SECTION (Reference Design Match)
   ========================================================================== */
.contact-header {
    margin-bottom: 36px;
}

.contact-main-title {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

/* Left Grid: Social & Platform Cards */
.connect-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-card {
    background: rgba(18, 20, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 230, 0, 0.2);
    will-change: transform;
    transform: translateZ(0);
}


.social-card:hover {
    border-color: rgba(255, 230, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.social-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    font-size: 1.4rem;
    color: var(--text-white);
}

.social-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

.social-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.social-card.full-width-card {
    grid-column: 1 / -1;
}

/* Right Card: Get In Touch Panel (Dark Cyber Glass Card - Eye Friendly) */
.get-in-touch-card {
    background: rgba(18, 20, 26, 0.96);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.touch-card-banner {
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.12), rgba(0, 229, 255, 0.12));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-title-art {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 6px;
}

.touch-card-content {
    padding: 32px;
}

.touch-heading {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.touch-item {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.touch-item:last-of-type {
    border-bottom: none;
}

.touch-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.touch-value {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.touch-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.btn-send-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--yellow);
    color: #08080a;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.25);
    transition: var(--transition);
}

.btn-send-email:hover {
    background: var(--yellow-hover);
    color: #08080a;
    box-shadow: 0 10px 25px rgba(255, 230, 0, 0.4);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 24px;
    text-align: center;
    color: var(--text-subtle);
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--yellow);
}

/* Footer Back to Top Button */
.footer-back-top {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.25);
    color: var(--yellow);
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 8px;
}

.footer-back-top:hover {
    background: var(--yellow);
    color: var(--bg-black);
    box-shadow: 0 0 15px var(--yellow-glow);
    transform: translateY(-2px);
}

/* Floating Back to Top Arrow Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(12, 13, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 230, 0, 0.35);
    color: var(--yellow);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 230, 0, 0.15);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--yellow);
    color: var(--bg-black);
    border-color: var(--yellow);
    box-shadow: 0 0 25px var(--yellow-glow);
    transform: translateY(-4px);
}

.footer-nav a:hover {
    color: var(--yellow);
}

/* Modal Overlay (Zero-Lag GPU Composited) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 10, 0.88);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.50s ease, visibility 0.50s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    max-width: 840px;
    width: 92%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    padding: 36px 36px 32px;
    background: rgba(18, 20, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.05);
    animation: modalAnim 0.50s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes modalAnim {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--yellow);
    background: rgba(255, 230, 0, 0.2);
    border-color: var(--yellow);
    transform: rotate(90deg);
}


/* Responsive Queries */
@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .about-cards-grid, .contact-split-layout {
        grid-template-columns: 1fr;
    }

    .connect-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        background-color: #08080a !important;
        background-image: none !important;
        background: #08080a !important;
    }
    .fixed-bg {
        display: none !important;
    }

    .section-block {
        padding: 55px 0 25px;
    }

    .main-wrapper {
        padding: 90px 16px 50px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-container {
        position: fixed;
        top: 16px;
        right: 16px;
        left: auto;
        width: auto;
        padding: 0;
        z-index: 1000;
    }

    .pill-navbar {
        position: relative;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .hamburger-btn {
        display: flex;
        background: rgba(14, 15, 21, 0.95);
        border: 1px solid rgba(255, 230, 0, 0.4);
        border-radius: 10px;
        padding: 0;
        width: 40px;
        height: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu {
        position: fixed;
        top: 66px;
        right: 16px;
        left: auto;
        transform: translateY(-10px) scale(0.96);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        flex-direction: column;
        background: rgba(12, 14, 20, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 12px;
        width: 220px;
        gap: 4px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
        transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s;
        will-change: transform, opacity;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 8px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .menu-title {
        font-family: var(--font-head);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: var(--text-muted);
        text-transform: uppercase;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.92rem;
        border-radius: 10px;
        background: transparent;
        outline: none;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-link:focus, .nav-link:focus-visible {
        outline: none;
        background: transparent;
    }

    @media (hover: hover) {
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.08);
        }
    }

    .nav-link.active {
        background: rgba(255, 230, 0, 0.14) !important;
        color: var(--yellow) !important;
        font-weight: 700;
        box-shadow: none !important;
    }

    .mobile-menu-footer {
        display: block;
        width: 100%;
        padding-top: 8px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-cv-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: var(--yellow);
        color: #08080a;
        font-weight: 700;
        font-size: 0.88rem;
        padding: 10px;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: none !important;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .mobile-cv-btn:hover {
        background: var(--yellow-hover);
        transform: translateY(-2px);
    }

    .about-cards-grid,
    .skills-grid-layout,
    .connect-cards-grid,
    .projects-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .glass-panel,
    .about-card,
    .skills-category-card,
    .project-card,
    .who-am-i-box,
    .social-card,
    .get-in-touch-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .who-am-i-box {
        padding: 24px 20px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-resume, .btn-experience {
        width: 100%;
        justify-content: center;
    }

    .back-to-top-btn {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .modal-overlay {
        padding: 12px;
    }

    .modal-card {
        width: 95vw;
        max-height: 88vh;
        padding: 24px 16px 20px;
        border-radius: 18px;
    }

    .modal-close-btn {
        top: 12px;
        right: 14px;
    }

    .touch-card-content {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .back-to-top-btn {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .tech-tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   SWIPEABLE MOBILE GALLERY MODAL CAROUSEL
   ========================================================================== */
.swipe-gallery-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.05);
}

.swipe-gallery-container::-webkit-scrollbar {
    height: 6px;
}

.swipe-gallery-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.swipe-gallery-container::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 10px;
}

.swipe-gallery-slide {
    flex: 0 0 210px;
    max-width: 210px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.swipe-gallery-slide:hover {
    border-color: var(--yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 230, 0, 0.2);
}

.swipe-gallery-slide img {
    width: 100%;
    height: 380px;
    object-fit: contain;
    background: #06070a;
    display: block;
    cursor: pointer;
}

.slide-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 230, 0, 0.3);
}

/* ==========================================================================
   CYBER PRELOADER LOADING SCREEN STYLES
   ========================================================================== */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #08080a;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 360px;
    width: 90%;
}

.preloader-spinner {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.spinner-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}


.ring-yellow {
    width: 100%;
    height: 100%;
    border-top-color: var(--yellow);
    border-right-color: var(--yellow);
    animation: preloaderSpin 1.2s linear infinite;
}

.ring-blue {
    width: 75%;
    height: 75%;
    border-bottom-color: var(--blue);
    border-left-color: var(--blue);
    animation: preloaderSpinRev 0.9s linear infinite;
}

.spinner-core {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.6);
}

.preloader-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 4px;
}

.preloader-subtext {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 20px;
}

.preloader-bar-wrapper {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--blue));
    border-radius: 6px;
    box-shadow: 0 0 12px var(--yellow);
    transition: width 0.15s ease-out;
}

.preloader-status {
    font-size: 0.75rem;
    font-family: var(--font-head);
    color: var(--text-muted);
    letter-spacing: 1px;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderSpinRev {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* ==========================================================================
   SKILLS SECTION STYLES
   ========================================================================== */
.skills-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .skills-grid-layout {
        grid-template-columns: 1fr;
    }
}

.skills-category-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}


.category-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.category-header h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.category-badge.yellow {
    background: rgba(255, 230, 0, 0.12);
    border: 1px solid rgba(255, 230, 0, 0.25);
    color: var(--yellow);
}

.category-badge.blue {
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: var(--blue);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    transition: var(--transition);
}

.skill-card-item:hover {
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.skill-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-icon-title h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.skill-icon {
    font-size: 1.3rem;
}

.skill-icon.yellow { color: var(--yellow); }
.skill-icon.blue { color: var(--blue); }

.skill-tag {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-tag.yellow {
    background: rgba(255, 230, 0, 0.15);
    color: var(--yellow);
}

.skill-tag.blue {
    background: rgba(0, 229, 255, 0.15);
    color: var(--blue);
}

.skill-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.ongoing-badge {
    background: rgba(255, 230, 0, 0.18) !important;
    border: 1px solid rgba(255, 230, 0, 0.4) !important;
    color: var(--yellow) !important;
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   THEME TOGGLE BUTTON & LIGHT MODE OVERRIDES
   ========================================================================== */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--yellow);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background: rgba(255, 230, 0, 0.2);
    border-color: var(--yellow);
    transform: scale(1.1);
}

/* ==========================================================================
   PROJECT CATEGORY FILTER BAR
   ========================================================================== */
.project-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.filter-btn:hover {
    background: rgba(255, 230, 0, 0.12);
    border-color: var(--yellow);
    color: var(--yellow);
}

.filter-btn.active {
    background: var(--yellow);
    color: #08080a;
    border-color: var(--yellow);
    font-weight: 800;
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
}

/* ==========================================================================
   CYBER TOAST NOTIFICATION
   ========================================================================== */
.cyber-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(8, 8, 10, 0.95);
    border: 1px solid var(--yellow);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 230, 0, 0.3);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}



