/* ============================================
   CYBER TECH THEME - Professional & Modern
   Designed for Recruiters with Tech Aesthetic
   ============================================ */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ============================================
   ROOT VARIABLES - Color Palette
   ============================================ */
:root {
    /* Primary Colors */
    --cyber-blue: #00d4ff;
    --cyber-blue-dark: #0099ff;
    --cyber-purple: #a855f7;
    --cyber-purple-dark: #8b5cf6;
    --cyber-cyan: #06b6d4;
    --cyber-cyan-light: #22d3ee;

    /* Background Colors */
    --bg-dark: #0a0e27;
    --bg-darker: #050814;
    --bg-card: #1a1f3a;
    --bg-card-hover: #252b4a;

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Accent Colors */
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--cyber-blue) 0%, var(--cyber-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--cyber-blue) 100%);
    --gradient-bg: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    --gradient-card: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(10, 14, 39, 0.8) 100%);

    /* Shadows & Glows */
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.1);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.3), 0 0 40px rgba(6, 182, 212, 0.1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 212, 255, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.3);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: linear-gradient(135deg, var(--cyber-blue) 0%, var(--cyber-purple) 100%);
    color: var(--text-primary);
    text-shadow: var(--glow-blue);
}

::-moz-selection {
    background: linear-gradient(135deg, var(--cyber-blue) 0%, var(--cyber-purple) 100%);
    color: var(--text-primary);
    text-shadow: var(--glow-blue);
}

/* ============================================
   SCROLLBAR CUSTOM
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-blue);
    box-shadow: var(--glow-blue);
}

/* ============================================
   BODY & BACKGROUND
   ============================================ */
body.dark-body {
    background: var(--bg-dark);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

/* ============================================
   THEME COLORS
   ============================================ */
.theme-color {
    color: var(--cyber-blue) !important;
    transition: all 0.3s ease;
}

.theme-color:hover {
    color: var(--cyber-purple) !important;
    text-shadow: var(--glow-purple);
}

.theme-bg {
    background: var(--gradient-primary) !important;
    box-shadow: var(--glow-blue);
}

.theme-after:after {
    background: var(--gradient-primary) !important;
    box-shadow: var(--glow-blue);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-theme {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    border: 2px solid transparent;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: var(--glow-blue), 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-theme:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-theme:hover:before {
    left: 100%;
}

.btn-theme:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-purple), 0 15px 40px rgba(168, 85, 247, 0.4) !important;
    background: linear-gradient(135deg, var(--cyber-purple) 0%, var(--cyber-blue) 100%) !important;
}

.btn-theme:active {
    transform: translateY(-1px) scale(0.98);
}

/* ============================================
   HEADER
   ============================================ */
.header.theme-bg {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.header .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: var(--glow-blue);
    position: relative;
}

.header .logo:after {
    content: '▊';
    animation: blink 1s infinite;
    margin-left: 3px;
}

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

/* ============================================
   HOME BANNER
   ============================================ */
#home-photo-color {
    background: var(--gradient-primary) !important;
    position: relative;
    overflow: hidden;
}

#home-photo-color:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 212, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 212, 255, 0.03) 3px
        );
    animation: scan 8s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.home-banner .profile-img {
    border: 4px solid var(--cyber-blue);
    box-shadow: var(--glow-blue), 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.home-banner .profile-img:hover {
    transform: scale(1.05);
    border-color: var(--cyber-purple);
    box-shadow: var(--glow-purple), 0 25px 70px rgba(168, 85, 247, 0.4);
}

.home-banner h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-blue);
    letter-spacing: -1px;
}

.home-banner h6 {
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-banner p {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 500;
}

/* Social Icons */
.home-banner .social-icons li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--bg-card);
    border: 2px solid rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.home-banner .social-icons li a:hover {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--glow-blue);
    border-color: transparent;
}

/* ============================================
   PAGE SECTIONS
   ============================================ */
.page {
    background: var(--bg-dark);
}

.white-bg {
    background: var(--bg-dark) !important;
}

.page-title {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
}

.page-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8) 0%, rgba(168, 85, 247, 0.8) 100%);
    mix-blend-mode: multiply;
}

.page-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), var(--glow-blue);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-titel h6 {
    color: var(--cyber-cyan);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    padding-left: 30px;
}

.section-titel h6:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--cyber-blue);
    animation: pulse 2s infinite;
}

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

.st-title h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 42px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 32px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.about-text p b {
    color: var(--cyber-blue);
    font-weight: 600;
}

/* Feature Boxes */
.feature-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover:before {
    transform: scaleX(1);
}

.feature-box:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--cyber-blue);
}

.feature-box .icon {
    font-size: 40px;
    color: var(--cyber-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover .icon {
    color: var(--cyber-purple);
    transform: scale(1.1);
    filter: drop-shadow(var(--glow-purple));
}

.feature-box h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin: 15px 0;
    font-size: 20px;
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.feature-box p b {
    color: var(--cyber-cyan);
}

/* Person Information */
.person_information {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-top: 20px;
}

.person_information ul li {
    color: var(--text-secondary);
    font-weight: 500;
}

.person_information ul li b {
    color: var(--cyber-blue);
}

/* Social Icons */
.social_icon li a {
    background: var(--bg-dark);
    border: 2px solid rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social_icon li a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
    border-color: transparent;
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.progress-lt h6 {
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.progress-lt span.theme-bg {
    background: var(--gradient-primary) !important;
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: var(--glow-blue);
}

.progress {
    height: 8px;
    border-radius: 10px;
    background: var(--bg-card);
    overflow: visible;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    background: var(--gradient-primary) !important;
    border-radius: 10px;
    box-shadow: var(--glow-blue);
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* ============================================
   RESUME SECTION
   ============================================ */
.resume-row {
    margin-bottom: 50px;
}

.resume-row h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.resume-row h2:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: var(--glow-blue);
}

.resume-row ul {
    list-style: none;
    padding: 0;
}

.resume-row ul li {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.resume-row ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.resume-row ul li:hover:before {
    transform: scaleY(1);
}

.resume-row ul li:hover {
    background: var(--bg-card-hover);
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--cyber-blue);
}

.r-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.r-name .theme-bg {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
}

.r-name span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    flex: 1;
}

.r-name label {
    color: var(--cyber-cyan);
    font-weight: 600;
    font-size: 13px;
    background: rgba(6, 182, 212, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    font-family: 'JetBrains Mono', monospace;
}

.r-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.r-info p b {
    color: var(--cyber-blue);
}

/* Certifications List */
.resume-row ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.filter li {
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 12px 24px;
    margin: 5px;
    border-radius: 25px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.filter li:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.filter li.active {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    box-shadow: var(--glow-blue);
    border-color: transparent;
}

.portfolio-col {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-col:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--cyber-blue);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
}

.portfolio-img img {
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.portfolio-col:hover .portfolio-img img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.portfolio-img .hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95) 0%, rgba(168, 85, 247, 0.95) 100%);
}

.action-btn a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.action-btn a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio-info span {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.portfolio-info span b {
    color: var(--cyber-blue);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    background: var(--bg-dark);
    border: 2px solid rgba(0, 212, 255, 0.1);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    background: var(--bg-card);
    border-color: var(--cyber-blue);
    box-shadow: var(--glow-blue);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.input-focus-effect {
    display: none;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-info:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--cyber-blue);
}

.contact-info i {
    font-size: 36px;
    color: var(--cyber-blue);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.contact-info:hover i {
    color: var(--cyber-purple);
    transform: scale(1.1);
    filter: drop-shadow(var(--glow-purple));
}

.contact-info h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin: 15px 0 10px;
    font-size: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.pages-nav__item a {
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.pages-nav__item a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.pages-nav__item a:hover {
    color: var(--text-primary);
}

.pages-nav__item a:hover:before,
.pages-nav__item a.link--page-active:before {
    width: 100%;
}

.pages-nav__item a.link--page-active {
    color: var(--cyber-blue);
    text-shadow: var(--glow-blue);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--glow-blue); }
    50% { box-shadow: var(--glow-purple); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Apply float animation to certain elements */
.feature-box:hover {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading {
    background: var(--bg-darker);
}

.load-circle {
    border-top-color: var(--cyber-blue);
    border-right-color: var(--cyber-purple);
    border-bottom-color: var(--cyber-cyan);
    animation: spin 1s linear infinite;
}

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

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .home-banner h1 {
        font-size: 40px;
    }

    .st-title h2 {
        font-size: 32px;
    }

    .page-title h2 {
        font-size: 36px;
    }

    .btn-theme {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ============================================
   DARK COLOR CLASS
   ============================================ */
.dark-color {
    color: var(--text-primary) !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.cyber-gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyber-glow {
    box-shadow: var(--glow-blue);
}

.cyber-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--cyber-blue);
}
