:root {
    --bg-main: #fff8f5;
    --brand-dark-green: #146139;
    --brand-light-green: #b1d8ac;
    --bg-accent: #ffeee7;
    --text-dark: #3b2900;
    --text-light: #fff8f5;
    --other-color: #a0a0a0;
}

body { background-color: var(--bg-main); color: var(--text-dark); font-family: 'Cinzel', serif; }
.font-display { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.03em; }
.font-body { font-family: 'Cinzel', serif; }
.font-mono { font-family: 'Fira Code', monospace; }
.font-professional { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.font-title { font-family: 'Cormorant Garamond', serif; }
.font-subtext { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.dark-section { background-color: var(--brand-dark-green); color: var(--text-light); }
.nav-glass { background-color: rgba(255, 248, 245, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

/* Performance hints */
.hero-card, .scrolly-step-new, .report-card, .management-card-new, .collab-cursor, .collab-comment, .terminal, .dev-feature-text {
     will-change: transform, opacity;
}

/* Enhanced button interactions - more selective to avoid conflicts */
.hero-card a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Enhanced focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brand-light-green);
    outline-offset: 2px;
}

/* Improved scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--brand-light-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-dark-green);
}

/* Hero Cards */
.hero-card {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
}
.hero-card:hover {
    /* No hover effects - cards stay completely static */
}

/* Modern Scrollytelling Styles */
#scrolly-wrapper-new { position: relative; width: 100%; height: 400vh; }
#scrolly-sticky-container { 
    position: sticky; 
    top: 0; 
    height: 100vh; 
    width: 100%; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem;
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

#scrolly-text-wrapper { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: center;
}

#scrolly-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrolly-step-new { 
    position: absolute; 
    width: 100%; 
    opacity: 0; 
    visibility: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.scrolly-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Speed Visualization */
.speed-meter {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #146139 0deg, #b1d8ac 180deg, rgba(255,255,255,0.1) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(177, 216, 172, 0.3);
}

.speed-meter::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--brand-dark-green);
    border-radius: 50%;
}

.speed-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* Accuracy Visualization */
.accuracy-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    width: 400px;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 0 0 rgba(177, 216, 172, 0);
    transition: box-shadow 0.5s ease;
}

.accuracy-grid.active {
    box-shadow: 0 0 40px rgba(177, 216, 172, 0.3), 0 0 80px rgba(177, 216, 172, 0.1);
    animation: gridAmbientGlow 4s ease-in-out infinite alternate;
}

@keyframes gridAmbientGlow {
    0% {
        box-shadow: 0 0 40px rgba(177, 216, 172, 0.3), 0 0 80px rgba(177, 216, 172, 0.1);
    }
    100% {
        box-shadow: 0 0 60px rgba(177, 216, 172, 0.5), 0 0 120px rgba(177, 216, 172, 0.2);
    }
}

.accuracy-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.accuracy-dot.verified {
    background: var(--brand-light-green);
    box-shadow: 0 0 15px rgba(177, 216, 172, 0.8), 0 0 30px rgba(177, 216, 172, 0.4);
    transform: scale(1.1);
    animation: accuracyGlow 2s ease-in-out infinite alternate;
}

.accuracy-dot.verified-special {
    background: #7cb576; /* Darker shade of green */
    box-shadow: 0 0 25px rgba(124, 181, 118, 1), 0 0 50px rgba(124, 181, 118, 0.6);
    transform: scale(1.15);
    animation: accuracyGlowSpecial 1.8s ease-in-out infinite alternate;
}

@keyframes accuracyGlow {
    0% {
        box-shadow: 0 0 15px rgba(177, 216, 172, 0.8), 0 0 30px rgba(177, 216, 172, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(177, 216, 172, 1), 0 0 40px rgba(177, 216, 172, 0.6);
    }
}

@keyframes accuracyGlowSpecial {
    0% {
        box-shadow: 0 0 25px rgba(124, 181, 118, 1), 0 0 50px rgba(124, 181, 118, 0.6);
    }
    100% {
        box-shadow: 0 0 35px rgba(124, 181, 118, 1), 0 0 70px rgba(124, 181, 118, 0.8);
    }
}

/* Innovation Visualization */
.innovation-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-element {
    position: absolute;
    background: rgba(177, 216, 172, 0.2);
    border: 2px solid var(--brand-light-green);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--brand-light-green);
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--brand-light-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(177, 216, 172, 0.8);
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-light-green), transparent);
    transform-origin: left center;
}

/* Reporting Section: Visual Card Styles */
.report-card { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; padding: 1.5rem; background-color: white; border-radius: 1rem; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15); border: 1px solid #f0f0f0; max-width: 320px; }

/* Collaboration Section Styles */
.collab-comment::after { content: ''; position: absolute; left: -8px; top: 12px; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-right: 8px solid white; }

/* Management Section Styles */
.management-card-new {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.management-card-new:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.management-card-new:hover .card-front,
.management-card-new:hover .card-back {
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
}

.card-front {
    z-index: 2;
    transform: rotateY(0deg) translateZ(1px); /* More robust fix for bleed-through */
}

.card-back {
    padding: 3rem;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    transform: rotateY(180deg) translateZ(1px); /* More robust fix for bleed-through */
    z-index: 1;
}

/* Adjust image sizes on front of cards */
.card-front img {
    max-width: 100%;
    height: auto;
}

/* Developer Section Styles */
#developer-section-wrapper { position: relative; height: 500vh; }
.developer-sticky-container { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; }
.dev-feature-text { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    position: absolute; 
    top: 0; 
    right: 0; 
    opacity: 0; 
    visibility: hidden;
    padding-right: 2rem;
}
.dev-text-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 248, 245, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}
.dev-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(177, 216, 172, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dev-text-card:hover::before {
    opacity: 1;
}
.dev-text-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 10px 40px -15px rgba(177, 216, 172, 0.3);
}
.dev-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(177, 216, 172, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dev-feature-title {
    position: relative;
    display: inline-block;
}
.dev-feature-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-light-green);
    transition: width 0.3s ease;
}
.dev-text-card:hover .dev-feature-title::after {
    width: 100%;
}
.dev-feature-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(177, 216, 172, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    color: var(--brand-light-green);
}
.terminal { background-color: #0D1117; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 1rem; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4); }
.terminal-header { display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.75rem; margin-bottom: 1rem; }
.terminal-dot { width: 12px; height: 12px; border-radius: 99px; }
.terminal-body { min-height: 400px; position: relative; }
.terminal-visual { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; }
.terminal-visual pre { 
    white-space: pre-wrap; 
    word-wrap: break-word; 
    overflow-wrap: break-word;
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.4;
}
.token { color: #A5D6FF; } /* Default token color */
.token.keyword { color: #FF7B72; }
.token.comment { color: #8B949E; }
.token.prompt { color: #8B949E; }

/* Terminal Progress Bar */
.terminal-progress {
    margin-bottom: 1rem;
    color: #A5D6FF;
    font-size: 0.875rem;
}

.progress-label {
    margin-bottom: 0.5rem;
    color: #8B949E;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--brand-light-green);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(177, 216, 172, 0.5);
}

.progress-percentage {
    text-align: right;
    color: var(--brand-light-green);
    font-size: 0.75rem;
}

/* Developer Console UI Styles */
#dev-console-ui { display: grid; grid-template-columns: 0.8fr 1.2fr; grid-template-rows: auto 1fr; gap: 1rem; height: 100%; }
.console-panel { background-color: rgba(255,255,255,0.03); padding: 1rem; border-radius: 0.5rem; }
#console-config { grid-row: span 2; }
.param-slider .param-track { background-color: rgba(255,255,255,0.1); border-radius: 99px; height: 4px; }
.param-slider .param-progress { background-color: var(--brand-light-green); width: 0%; height: 100%; border-radius: 99px; }

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    /* Optimize scrollytelling for mobile */
    #scrolly-wrapper-new {
        height: auto; /* Remove fixed height on mobile */
    }
    
    #scrolly-sticky-container {
        position: relative; /* Remove sticky on mobile */
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        height: auto;
        padding: 1rem 2%;
    }
    
    .scrolly-step-new {
        position: relative; /* Remove absolute positioning on mobile */
        margin-bottom: 3rem;
        padding: 2rem 1rem;
    }
    
    .scrolly-visual {
        position: relative; /* Remove absolute positioning on mobile */
        margin-bottom: 2rem;
    }
    
    .speed-meter, .accuracy-grid, .innovation-container {
        transform: scale(0.75);
        margin: 0 auto;
    }
    
    /* Improve mobile terminal experience */
    .terminal {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .terminal-body {
        min-height: 200px; /* Reduce height on mobile */
    }
    
    /* Mobile typography improvements */
    .scrolly-step-new h2 {
        font-size: 2.5rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .scrolly-step-new p {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .reporting-visuals-content {
        margin-top: 4rem;
    }

    .developer-sticky-container {
        grid-template-columns: 1fr;
        position: relative; /* Remove sticky on mobile */
    }

    .developer-visuals-container {
        display: none;
    }

    .dev-feature-text {
        padding-right: 0;
        justify-content: center;
        position: relative;
        height: auto;
        margin-bottom: 2rem;
    }
    
    /* Mobile hero improvements */
    .hero-section-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    /* Mobile management cards - keep flip animation */
    .management-card-new {
        height: 350px; /* Slightly smaller on mobile */
    }
    
    .card-front, .card-back {
        padding: 2rem 1.5rem;
    }
    
    /* Improved mobile animations */
    .innovation-container {
        width: 300px;
        height: 300px;
    }
    
    .accuracy-grid {
        width: 300px;
        padding: 1.5rem;
    }
    
    .speed-meter {
        width: 240px;
        height: 240px;
    }
    
    .speed-meter::before {
        width: 160px;
        height: 160px;
    }
    
    /* Enhanced touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .hero-card a {
        padding: 0.875rem 1.5rem; /* Larger touch target */
    }
    
    /* Better mobile spacing */
    main section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Mobile hero section */
    main > section:first-of-type {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    main > section:first-of-type h1 {
        font-size: 4rem !important;
        margin-bottom: 1rem;
    }
    
    .font-subtext {
        font-size: 0.875rem !important;
        margin-top: 1rem;
    }
    
    /* Mobile sections spacing */
    .dark-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    #metrics,
    #reporting,
    #collaboration,
    #management,
    #final-cta {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem !important;
        line-height: 1.4;
        margin-top: 1.5rem;
    }
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    height: 60px;
    transition: transform 0.3s ease;
}

.mobile-header.menu-open {
    background: rgba(255, 248, 245, 0.98);
    border-bottom-color: transparent;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
    position: relative;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    position: absolute;
    border-radius: 1px;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 11px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 15px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 19px;
}

.mobile-menu-toggle.active {
    z-index: 1003;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
    background: white !important;
    opacity: 1 !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
    background: white !important;
    opacity: 1 !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Use dynamic viewport height for better mobile support */
    background-color: #146139;
    background-image: linear-gradient(135deg, #146139 0%, #0e4a2b 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    /* Ensure the background is always visible */
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 100vw;
    /* Handle safe areas on modern phones */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fallback for older browsers */
@supports not (backdrop-filter: blur(20px)) {
    .mobile-menu-overlay {
        background-color: #146139 !important;
        background-image: none !important;
    }
}

/* Additional fallback - ensure background is always visible */
.mobile-menu-overlay {
    background: #146139 !important;
}

.mobile-menu-overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #146139 0%, #0e4a2b 100%);
    z-index: -1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 80px 20px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-item {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 16px 0;
    padding: 20px 40px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

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

.mobile-menu-item:hover::before,
.mobile-menu-item:active::before {
    left: 100%;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-auth-btn {
    background: var(--brand-light-green);
    color: var(--brand-dark-green) !important;
    font-weight: 700;
    margin-top: 20px;
    border-color: var(--brand-light-green);
}

.mobile-auth-btn:hover,
.mobile-auth-btn:active {
    background: #9cc694;
    color: var(--brand-dark-green) !important;
    border-color: #9cc694;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.desktop-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--mobile-transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.desktop-link:hover,
.desktop-link:active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.desktop-link svg {
    width: 16px;
    height: 16px;
} 