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

:root {
    --cyber-black: #0A0A0F;
    --cyber-dark: #12121A;
    --cyber-purple: #7C3AED;
    --cyber-pink: #FF00FF;
    --cyber-gold: #FFD700;
    --cyber-cyan: #00FFFF;
    --neon-purple: #A855F7;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --surface-dark: #1A1A25;
    
    --gradient-purple: linear-gradient(135deg, #350882 0%, #FF00FF 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-cyber: linear-gradient(135deg, #00FFFF 0%, #FF00FF 50%, #FFD700 100%);

    color-scheme: only light;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.monospace {
    font-family: 'JetBrains Mono', monospace;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: #000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #3a334582;
    z-index: 1000;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.nav-cta {
    background: linear-gradient(#7c3aed, #7f4fa8);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.5);
    border-color: var(--cyber-pink);
}

.nav-cta::after {
    content: none !important;
}

.solana-logo {
    height: 18px;
    width: auto;
    margin-right: 0.5rem;
    filter: brightness(1.1);
}

.nav-x-link {
    color: var(--text-primary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    opacity: 0.9;
}

.nav-x-link:hover {
    color: var(--text-primary) !important;
    opacity: 1;
}

.nav-x-link .x-icon {
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-x-link:hover .x-icon {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.intro-section {
    padding: 10rem 2rem 5rem;
    background: var(--cyber-black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #3a334582;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.12fr 0.78fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
}

.intro-left {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.intro-header {
    margin-bottom: 0;
}

.intro-logo {
    width: 384px;
    height:256px;
    display: block;
    margin-left: -1.5rem;
    margin-top:2.5rem;
}

.intro-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    color: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-align: right;
    padding-right: 0.5rem;
}

.intro-header h1 span {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
   color: #fcdc8d;
}

.intro-right {
    padding-top: 0;
    margin-top: -45px;
}

.typing-effect {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyber-cyan);
    margin-bottom: 0;
    line-height: 1.4;
    text-align: right;
    margin-right: 0.5rem;
}

.intro-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 950px;
    margin: 0 auto;
    margin-top: 2rem;
}

.typing-container {
    position: relative;
}

.typing-invisible {
    visibility: hidden;
    font-family: 'JetBrains Mono', monospace;
    color: #eee;
}

.typing-visible {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'JetBrains Mono', monospace;
    color: #ccc;
}

.typing-paragraph {
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: var(--cyber-gold);
    font-weight: 600;
}

.intro-panel {
    background: linear-gradient(90deg, 
        rgba(124, 58, 237, 0.08) 0%,
        rgba(124, 58, 237, 0.08) 40%,
        rgba(26, 26, 37, 0.6) 60%,
        rgba(18, 18, 26, 0.8) 75%,
        rgba(10, 10, 15, 0.95) 85%,
        #0A0A0F 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-image: linear-gradient(90deg, 
        rgba(124, 58, 237, 0.2) 0%,
        rgba(124, 58, 237, 0.2) 40%,
        rgba(124, 58, 237, 0.1) 60%,
        rgba(124, 58, 237, 0.05) 75%,
        transparent 85%,
        transparent 100%
    ) 1;
    border-width: 1px;
    border-style: solid;
    border-right: none;
    padding: 2rem 2rem 2rem 2rem;
    margin-top: 2rem;
    margin-left: -2rem;
    position: relative;
    overflow: hidden;
    font-style: italic;
    font-family: 'Inter', serif;
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50% + 2rem);
}

.intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--cyber-purple) 50%, transparent 100%);
}


.intro-panel p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.intro-panel p:last-child {
    margin-bottom: 0;
}

.intro-tagline {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    font-style: italic;
    text-align: right;
    font-family: 'Inter', serif;
    line-height: 1.7;
    margin-top: auto;
    margin-bottom: 32px;
    margin-right: 2rem;
}

.binary-bg {
    position: absolute;
    top: 20%;
    right: 5%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--cyber-purple);
    opacity: 0.1;
    transform: rotate(15deg);
    pointer-events: none;
}

.staking-section {
    padding: 5rem 2rem;
    background: var(--surface-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #3a334582;
}


.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.staking-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.staking-bg-video.active {
    opacity: 0.3;
}


.staking-widget {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.staking-widget::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.staking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.staking-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.staking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    border-color: var(--cyber-purple);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cyber-purple);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.staking-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding-left:10%;
}

.mev-comission {
    position: absolute;
    font-size: 0.6rem;
    bottom: 8px;
    text-align: center;
    padding: 0;
    margin: 0;
    display: block;
    width:75%;
    opacity: 0.3;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--cyber-cyan);
    font-size: 1.2rem;
}

.btn-stake {
    background: var(--cyber-purple);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-stake:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
    background: var(--neon-purple);
}

.validator-section {
    padding: 5rem 2rem;
    background: var(--cyber-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #3a334582;
}

.validator-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    filter: blur(2px);
}

.validator-content {
    max-width: 1200px;
    margin: 0 auto;
}

.validator-intro {
    margin-bottom: 3rem;
}

.validator-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.validator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.validator-column h3 {
    color: var(--cyber-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.validator-column h3:first-child {
    margin-top: 0;
}

.validator-column p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.certifications-grid {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
    margin: 0 auto;
}

.cert-row {
    display: flex;
    gap: 10rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cert-image {
    flex: 1;
    max-width: 40%;
    height: auto;
    object-fit: contain;
}

.certification-item {
    background: #a2bcfd0d;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    min-height: 180px;
}

.certification-item strong {
    color: var(--cyber-gold);
    font-weight: 600;
}

.network-section {
    padding: 5rem 2rem;
    background: var(--cyber-black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #3a334582;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.validator-identity {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

.white {
    color: #eee !important;
}

.identity-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.identity-row:last-child {
    margin-bottom: 0;
}

.identity-label {
    color: var(--cyber-gold);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: right;
    white-space: nowrap;
}

.identity-value {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    gap: 1.5rem;
}

.network-card {
    background: var(--surface-dark);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.network-card:not(.solana-card) {
    padding: 0.5rem;
    min-height: 80px;
    display: flex;
    flex-direction: column;
}

.network-card:not(.solana-card) .network-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.2rem;
}

.network-card:not(.solana-card) .network-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    padding: 0.25rem;
}

.network-card:not(.solana-card) .network-logo {
    width: 40px;
    height: 40px;
}

.network-card:not(.solana-card) .network-title-group {
    flex: 1;
}

.network-card:not(.solana-card) h3 {
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
}

.network-card:not(.solana-card) .network-subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
    line-height: 1.1;
    color: #6f6a78;
}

.network-card:not(.solana-card) p {
    font-size: 0.65rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.network-card:not(.solana-card) .network-activities {
    gap: 0.25rem;
}

.network-card:not(.solana-card) .activity-tag {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
}

.network-icon {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cyber-gold);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.network-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.network-more-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.7;
}

.solana-card {
    position: relative;
    background: #2f2f3f;
    border: 1px solid rgba(255, 215, 0, 0.4);
    grid-column: 1 / -1;
}

.solana-layout {
    display: grid;
    grid-template-columns: auto minmax(200px, auto) 1fr;
    gap: 1rem;
    align-items: start;
}

.solana-logo-large {
    padding: 0 1.5rem;
}

.solana-main-logo {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-right: 1rem;
}

.solana-content-center {
    position: relative;
}

.solana-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 3rem;
}

.solana-description p {
    margin-bottom: 1rem;
}

.solana-content-center .jito-logo {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.solana-pools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    width: fit-content;
    max-width: 100%;
}

.pool-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.pool-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.network-tunnel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/tunnel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    animation: networkTunnelZoom 6s linear infinite;
    pointer-events: none;
}

.network-flash-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/image1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 2;
    animation: networkFlash 6s linear infinite;
    pointer-events: none;
}

@keyframes networkFlash {
    0% { 
        opacity: 0; 
    }
    2% { 
        background-image: url('../assets/images/image1.png');
        opacity: 0.15;
    }
    16% { 
        opacity: 0; 
    }
    33% { 
        opacity: 0; 
    }
    35% { 
        background-image: url('../assets/images/image2.png');
        opacity: 0.15;
    }
    49% { 
        opacity: 0; 
    }
    66% { 
        opacity: 0; 
    }
    68% { 
        background-image: url('../assets/images/image3.png');
        opacity: 0.15;
    }
    82% { 
        opacity: 0; 
    }
    100% { 
        opacity: 0; 
    }
}

@keyframes networkTunnelZoom {
    0% { 
        opacity: 0.12;
        transform: scale(1);
    }
    2% { 
        opacity: 0;
    }
    16% { 
        opacity: 0.12;
    }
    35% { 
        opacity: 0;
    }
    49% { 
        opacity: 0.12;
    }
    67.9% { 
        transform: scale(1.1);
    }
    68% { 
        opacity: 0;
        transform: scale(1);
    }
    82% { 
        opacity: 0.12;
    }
    100% { 
        transform: scale(1.1);
    }
}

.network-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-laser-system {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.contact-laser-beam {
    position: absolute;
    background: #B8860B;
    box-shadow: 0 0 8px #B8860B, 0 0 16px #B8860B;
    opacity: 0.4;
}

.contact-laser-beam.horizontal {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #B8860B 20%, #B8860B 80%, transparent 100%);
}

.contact-laser-beam.vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, #B8860B 20%, #B8860B 80%, transparent 100%);
}


.contact-intersection {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #B8860B;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.3);
    box-shadow: 0 0 12px #B8860B;
    animation: contactPulse 2s ease-in-out infinite;
    z-index: 2;
    margin-left: -5px;
    margin-top: -5px;
}

@keyframes contactPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.8);
        opacity: 0.9;
    }
}

@keyframes contactLaserLeftToRight {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes contactLaserRightToLeft {
    0% { transform: translateX(100%); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateX(-100%); opacity: 0; }
}

@keyframes contactLaserTopToBottom {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes contactLaserBottomToTop {
    0% { transform: translateY(100%); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100%); opacity: 0; }
}

.network-subtitle {
    color: var(--cyber-purple);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--cyber-purple);
}

.network-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.network-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activity-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--cyber-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-section {
    padding: 5rem 2rem;
    background: var(--surface-dark);
    background-image: url('/assets/images/space1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #3a334582;
}


.contact-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -2px;
    background: rgba(10, 10, 15, 0.8);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.contact-item {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-item h3 {
    color: var(--cyber-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-item:hover h3 {
    color: var(--cyber-cyan);
}

.contact-item p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item:hover p {
    color: var(--cyber-cyan);
    text-shadow: 0 0 5px var(--cyber-cyan);
}

.pgp-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pgp-section h3 {
    color: var(--cyber-gold);
    margin-bottom: 1rem;
}

.pgp-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

footer {
    padding: 3rem 2rem;
    background: var(--cyber-black);
    text-align: center;
}

.footer-binary {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyber-purple);
    opacity: 0.6;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}