/* DIGITAL-7 LCD FONT */
@font-face {
    font-family: 'Digital-7';
    src: url('digital-7.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
    font-family:'Inter',sans-serif;
    background: url('bg.jpg') repeat fixed;
    color:#fff;
    animation: panBackground 80s linear infinite;
}

/* APP */

.app{
    width:100%;
    height:100vh;
    height:100dvh;
    position:relative;
    overflow:hidden;
    background: transparent;
}

/* TOP BAR */

.topbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 18px;
    background:linear-gradient(to bottom,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0) 100%);
}

.topbar h1{
    font-size:22px;
    font-weight:700;
    letter-spacing:0.5px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo{
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* REELS */

.reels-container{
    width:100%;
    height:100%;
    overflow-y:scroll;
    scroll-snap-type:y mandatory;
    scrollbar-width:none;
}

.reels-container::-webkit-scrollbar{
    display:none;
}

.reel{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    scroll-snap-align:start;
    background:transparent;
}

/* VIDEO */

.reel video, .yt-video-container {
    width:100%;
    height:100%;
    object-fit:cover;
}

.yt-video-container iframe {
    width: 300%;
    height: 100%;
    margin-left: -100%;
    pointer-events: none;
}

/* GOOGLE DRIVE VIDEO (IFRAME) */

.drive-video{
    width:100%;
    height: calc(100% + 120px);
    border:none;
    position:absolute;
    top:-60px;
    left:0;
    z-index:1;
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.4) 35%,
        rgba(0,0,0,0) 65%
    );
    pointer-events: none;
}

/* CONTENT */

.reel-content{
    position:absolute;
    bottom:90px;
    left:16px;
    width:70%;
    z-index:20;
    pointer-events: none;
}

.username{
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    pointer-events: auto;
}

.caption{
    font-size:14px;
    line-height:1.5;
    color:#f1f1f1;
    margin-bottom:14px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    pointer-events: auto;
}

.music{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:#fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: auto;
}

/* ACTIONS */

.actions{
    position:absolute;
    right:14px;
    bottom:120px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    z-index:20;
}

.action-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
}

.action-btn button{
    width:54px;
    height:54px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50%;
    background:rgba(255,255,255,0.14);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s, border-color 0.2s;
}

.action-btn button:hover{
    background:rgba(255,255,255,0.22);
    border-color:rgba(255,255,255,0.25);
    transform: scale(1.06);
}

.action-btn button:active{
    transform: scale(0.9);
}

.action-btn span{
    font-size:12px;
    font-weight:600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* PROFILE */

.profile-img{
    width:58px;
    height:58px;
    border-radius:50%;
    border:2.5px solid #fff;
    object-fit:cover;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.profile-img:hover{
    transform: scale(1.05);
}

/* BOTTOM NAV */

.bottom-nav{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:74px;
    height: calc(74px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background:rgba(10, 20, 15, 0.8);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:100;
    border-top:1px solid rgba(255, 255, 255, 0.08);
}

.bottom-nav button,
.bottom-nav a{
    border:none;
    background:none;
    color:#00ff66;
    opacity:0.75;
    font-size:24px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    text-decoration:none;
    transition: transform 0.15s ease, color 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.bottom-nav button:hover,
.bottom-nav a:hover{
    color:#00ff66;
    opacity:1;
    filter: drop-shadow(0 0 6px rgba(0, 255, 102, 0.8));
}

.bottom-nav button:active,
.bottom-nav a:active{
    transform: scale(0.9);
}

.create-btn{
    width:54px;
    height:54px;
    border-radius:18px;
    background:#fff !important;
    color:#000 !important;
    font-size:32px !important;
    font-weight:700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.create-btn:hover{
    transform: scale(1.06) !important;
}

.create-btn:active{
    transform: scale(0.9) !important;
}

.bottom-nav .active{
    color:#00ff66;
    opacity:1;
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.9));
}

/* HOME BUTTON SVG */

.home-btn svg {
    display: block;
    transition: transform 0.15s ease;
}

.home-btn:hover svg {
    transform: scale(1.1);
}

.home-btn:active svg {
    transform: scale(0.88);
}

/* NAV LINK ICONS (SVG) */

.nav-link {
    color: #00ff66;
    opacity:0.75;
}

.nav-link svg {
    display: block;
    transition: transform 0.15s ease;
}

.nav-link:hover svg {
    transform: scale(1.1);
}

.nav-link:active svg {
    transform: scale(0.88);
}

/* MOBILE OPTIMIZATION */

@media(max-width:768px){

    .topbar{
        padding:16px;
    }

    .topbar h1{
        font-size:20px;
    }

    .reel-content{
        width:78%;
    }

    .action-btn button{
        width:50px;
        height:50px;
    }
}

/* LARGE DEVICES */

@media(min-width:768px){

    .app{
        max-width:390px;
        height: 86vh;
        margin: 7vh auto;
        border-radius: 24px;
        overflow: hidden;
    }
}

/* REELS VIEW CONTAINER */
.reels-view {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}


/* TOUCH OVERLAY — sits on top of video to block native controls */
.video-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* PAUSE INDICATOR — brief flash like Instagram */
.pause-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s, transform 0.15s;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.pause-indicator.show {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
}

/* Make video non-interactive so touches go to overlay */
.reel video, .yt-video-container {
    pointer-events: none;
}

/* HOME SCREEN */
.home-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 24px;
    gap: 20px;
    background: rgb(0 0 0 / 45%);
    z-index: 200;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* PARTICLE CANVAS */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* SCANLINES OVERLAY */
.scanlines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 4px
    );
    pointer-events: none;
    z-index: 3;
    animation: scanlineFlicker 0.1s infinite;
}

@keyframes scanlineFlicker {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.35; }
}

/* LASER SCAN LINE */
.home-screen::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #00ff66, #00ff66, transparent);
    box-shadow: 0 0 20px #00ff66, 0 0 40px #00ff66, 0 0 60px rgba(0,255,102,0.3);
    opacity: 0.35;
    pointer-events: none;
    z-index: 5;
    animation: laserScan 6s linear infinite;
}

/* HUD CORNER BRACKETS */
.hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: rgba(0, 255, 102, 0.5);
    border-style: solid;
    z-index: 10;
    pointer-events: none;
    animation: hudCornerPulse 3s ease-in-out infinite;
}

.hud-tl {
    top: 12px; left: 12px;
    border-width: 2px 0 0 2px;
}
.hud-tr {
    top: 12px; right: 12px;
    border-width: 2px 2px 0 0;
}
.hud-bl {
    bottom: 12px; left: 12px;
    border-width: 0 0 2px 2px;
}
.hud-br {
    bottom: 12px; right: 12px;
    border-width: 0 2px 2px 0;
}

@keyframes hudCornerPulse {
    0%, 100% {
        border-color: rgba(0, 255, 102, 0.35);
        box-shadow: none;
    }
    50% {
        border-color: rgba(0, 255, 102, 0.8);
        box-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
    }
}

/* HUD STATUS BARS */
.hud-status-bar,
.hud-bottom-bar {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(0, 255, 102, 0.5);
    text-transform: uppercase;
    pointer-events: none;
    animation: fadeInDown 1.5s 0.2s both;
}

.hud-status-bar {
    top: 18px;
    right: 18px;
}

.hud-bottom-bar {
    bottom: 18px;
    left: 18px;
    animation-name: fadeInUp;
}

.hud-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff66;
    box-shadow: 0 0 6px #00ff66;
    flex-shrink: 0;
}

.pulse-dot {
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #00ff66; }
    50% { opacity: 0.3; box-shadow: 0 0 8px #00ff66; }
}

.hud-divider {
    color: rgba(0, 255, 102, 0.25);
}

.blink-text {
    animation: blinkText 2s step-end infinite;
}

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

/* CIRCUIT DATA FLOW LINES */
.circuit-line {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.circuit-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #00ff66, transparent);
    box-shadow: 0 0 8px #00ff66;
    animation: dataFlow 3s linear infinite;
}

.circuit-line-left {
    left: 8px;
}

.circuit-line-right {
    right: 8px;
}

.circuit-line-right::after {
    animation-delay: 1.5s;
    animation-duration: 4s;
}

@keyframes dataFlow {
    0% { top: -40px; }
    100% { top: 100%; }
}

/* GLITCH TEXT EFFECT */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch-text::before {
    color: #0ff;
    z-index: -1;
    animation: glitchShift 4s infinite;
}

.glitch-text::after {
    color: #f0f;
    z-index: -1;
    animation: glitchShift 4s 0.1s infinite reverse;
}

@keyframes glitchShift {
    0%, 90%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    92% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-3px, 1px);
    }
    94% {
        clip-path: inset(50% 0 20% 0);
        transform: translate(3px, -1px);
    }
    96% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(-2px, 2px);
    }
    98% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(2px, -2px);
    }
}

/* TYPEWRITER TEXT */
.typewriter-text {
    overflow: hidden;
    border-right: 2px solid rgba(0, 255, 102, 0.6);
    white-space: normal;
    animation: typewriterBlink 0.8s step-end infinite;
}

@keyframes typewriterBlink {
    0%, 100% { border-color: rgba(0, 255, 102, 0.6); }
    50% { border-color: transparent; }
}

/* LOGO HEX RING */
.home-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    position: relative;
    animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.15s;
}

.logo-hex-ring {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(0, 255, 102, 0.15);
    border-radius: 50%;
    animation: hexRingSpin 20s linear infinite;
    pointer-events: none;
}

.logo-hex-ring::before,
.logo-hex-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.logo-hex-ring::before {
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 1px dashed rgba(0, 255, 102, 0.12);
    animation: hexRingSpin 30s linear infinite reverse;
}

.logo-hex-ring::after {
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(0, 255, 102, 0.08);
    animation: hexRingSpin 15s linear infinite;
}

@keyframes hexRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.home-logo {
    max-width: 210px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.45));
    animation: floatAndPulseLogo 4s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

@keyframes floatAndPulseLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.4));
    }
    50% {
        transform: translateY(-8px) scale(1.04);
        filter: drop-shadow(0 0 35px rgba(0, 255, 102, 0.8));
    }
}

.home-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    z-index: 4;
}

.home-title {
    font-family: 'Digital-7', 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: normal;
    color: #00ff66;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
    animation: glowText 3s infinite ease-in-out;
}

.home-tagline {
    font-family: 'Digital-7', 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #00ff66;
    line-height: 1.6;
    max-width: 320px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 12px rgba(0, 255, 102, 0.6), 0 0 25px rgba(0, 255, 102, 0.3);
    }
    50% {
        text-shadow: 0 0 22px rgba(0, 255, 102, 0.95), 0 0 40px rgba(0, 255, 102, 0.5), 0 0 60px rgba(0, 255, 102, 0.2);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes panBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 600px;
    }
}

@keyframes laserScan {
    0% {
        top: -100px;
    }
    100% {
        top: 110%;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 22px rgba(0, 255, 102, 0.45), 0 0 30px rgba(0, 255, 102, 0.15);
    }
}

.home-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 240px;
    margin-top: 5px;
    margin-bottom: 15px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.3s;
    z-index: 4;
}

.get-started-btn {
    width: 100%;
    padding: 11px 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    color: #000;
    background: linear-gradient(135deg, #fff 0%, #e0ffe0 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.3s;
    text-transform: uppercase;
    animation: buttonGlow 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.get-started-btn:hover::before {
    left: 120%;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 18px;
}

.get-started-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 102, 0.5), 0 0 40px rgba(0, 255, 102, 0.15);
}

.get-started-btn:active {
    transform: translateY(0) scale(0.98);
}

.contact-btn {
    width: 100%;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: #00ff66;
    background: rgba(0, 255, 102, 0.05);
    border: 2px solid rgba(0, 255, 102, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-btn:hover::before {
    opacity: 1;
}

.contact-btn:hover {
    border-color: #00ff66;
    color: #00ff66;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.3), inset 0 0 15px rgba(0, 255, 102, 0.08);
    background: rgba(0, 255, 102, 0.08);
}

.contact-btn:active {
    transform: scale(0.98);
}

/* ============================================
   CONTACT MODAL — CYBERPUNK HUD
   ============================================ */

.contact-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') repeat;
    animation: panBackground 80s linear infinite;
    z-index: 300;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 75px 24px 40px;
    overflow: hidden;
}

.contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
    pointer-events: none;
}

.contact-modal.active {
    display: flex;
    border: 2px solid rgba(0, 255, 102, 0.4);
    box-shadow: inset 0 0 30px rgba(0, 255, 102, 0.15), 0 0 20px rgba(0, 255, 102, 0.2);
}

/* CONTACT PAGE CONTENT */
.contact-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    z-index: 5;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* BACK BUTTON */
.close-modal {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ff66;
    padding: 8px 18px;
    border-radius: 20px;
    color: #00ff66;
    font-family: 'Digital-7', 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.4), inset 0 0 6px rgba(0, 255, 102, 0.1);
    z-index: 310;
}

.close-modal:hover {
    background: rgba(0, 255, 102, 0.15);
    box-shadow: 0 0 20px #00ff66, 0 0 40px rgba(0, 255, 102, 0.3), inset 0 0 10px rgba(0, 255, 102, 0.15);
    transform: scale(1.05);
    text-shadow: 0 0 8px #00ff66;
}

/* CONTACT TITLE */
.contact-title {
    font-family: 'Digital-7', 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #fff;
    letter-spacing: 3px;
    text-shadow:
        0 0 5px #00ff66,
        0 0 10px #00ff66,
        0 0 20px #00ff66,
        0 0 40px rgba(0, 255, 102, 0.4);
    margin-bottom: 5px;
    animation: contactTitleGlow 3s infinite ease-in-out;
}

@keyframes contactTitleGlow {
    0%, 100% {
        text-shadow:
            0 0 5px #00ff66,
            0 0 10px #00ff66,
            0 0 20px #00ff66,
            0 0 40px rgba(0, 255, 102, 0.3);
    }
    50% {
        text-shadow:
            0 0 8px #00ff66,
            0 0 18px #00ff66,
            0 0 35px #00ff66,
            0 0 60px rgba(0, 255, 102, 0.5);
    }
}

/* CIRCUIT SEPARATORS */
.circuit-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    position: relative;
    margin: 12px 0;
}

.separator-line {
    height: 3px;
    background: #00ff66;
    flex-grow: 1;
    box-shadow: 0 0 10px #00ff66, 0 0 20px rgba(0, 255, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.separator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    animation: circuitLightFlow 2.5s linear infinite;
}

@keyframes circuitLightFlow {
    0% { left: -30px; }
    100% { left: 100%; }
}

.separator-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #00ff66;
    box-shadow: 0 0 12px #00ff66, 0 0 4px #fff, 0 0 25px rgba(0, 255, 102, 0.4);
    flex-shrink: 0;
    margin: 0 5px;
    animation: nodePulse 2s infinite ease-in-out;
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 8px #00ff66, 0 0 4px #fff;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 18px #00ff66, 0 0 8px #fff, 0 0 30px rgba(0, 255, 102, 0.5);
        transform: scale(1.15);
    }
}

/* CONTACT LIST */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 340px;
    align-items: flex-start;
    padding-left: 10px;
}

/* STAGGERED ROW ANIMATIONS */
.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    width: 100%;
    transition: transform 0.3s, filter 0.3s;
    opacity: 0;
    animation: ctRowSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ct-row-1 { animation-delay: 0.3s; }
.ct-row-2 { animation-delay: 0.5s; }
.ct-row-3 { animation-delay: 0.7s; }
.ct-row-4 { animation-delay: 0.9s; }
.ct-row-5 { animation-delay: 1.1s; }

@keyframes ctRowSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-row:hover {
    transform: translateX(8px);
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.4));
}

/* ICON WRAPPERS */
.contact-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00ff66;
    border-radius: 12px;
    color: #00ff66;
    background: rgba(0, 255, 102, 0.04);
    box-shadow:
        0 0 10px rgba(0, 255, 102, 0.5),
        0 0 20px rgba(0, 255, 102, 0.2),
        inset 0 0 8px rgba(0, 255, 102, 0.15);
    flex-shrink: 0;
    transition: all 0.3s;
    animation: iconGlowPulse 3s infinite ease-in-out;
}

@keyframes iconGlowPulse {
    0%, 100% {
        box-shadow:
            0 0 8px rgba(0, 255, 102, 0.4),
            0 0 15px rgba(0, 255, 102, 0.15),
            inset 0 0 6px rgba(0, 255, 102, 0.1);
    }
    50% {
        box-shadow:
            0 0 15px rgba(0, 255, 102, 0.7),
            0 0 30px rgba(0, 255, 102, 0.3),
            inset 0 0 12px rgba(0, 255, 102, 0.2);
    }
}

.contact-row:hover .contact-icon-wrapper {
    box-shadow:
        0 0 20px rgba(0, 255, 102, 0.8),
        0 0 40px rgba(0, 255, 102, 0.4),
        inset 0 0 15px rgba(0, 255, 102, 0.25);
    border-color: #fff;
}

.contact-icon-wrapper.circular { border-radius: 50%; }
.contact-icon-wrapper.rounded-square { border-radius: 14px; }
.contact-icon-wrapper.speech-bubble { border-radius: 14px; }

/* CONTACT SVGS */
.contact-svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.8));
}

/* CONTACT TEXT */
.contact-text {
    font-family: 'Digital-7', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    line-height: 1.5;
    text-shadow:
        0 0 5px #00ff66,
        0 0 10px rgba(0, 255, 102, 0.6),
        0 0 20px rgba(0, 255, 102, 0.3);
    letter-spacing: 1.5px;
    transition: text-shadow 0.3s;
}

.email-lowercase {
    font-family: 'Orbitron', 'Inter', sans-serif;
    text-transform: lowercase;
    font-size: 0.8em;
    letter-spacing: 1px;
}

.contact-row:hover .contact-text {
    text-shadow:
        0 0 8px #00ff66,
        0 0 18px rgba(0, 255, 102, 0.8),
        0 0 30px rgba(0, 255, 102, 0.4);
}

/* INSTAGRAM */
.instagram-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.insta-label {
    font-family: 'Digital-7', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    line-height: 1.5;
    text-shadow:
        0 0 5px #00ff66,
        0 0 10px rgba(0, 255, 102, 0.6);
    letter-spacing: 1.5px;
}

.insta-handle {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    line-height: 1.5;
    text-transform: lowercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(0, 255, 102, 0.6),
        0 0 30px rgba(0, 255, 102, 0.3);
    letter-spacing: 2px;
}

/* WEBSITE PILL BUTTON */
.website-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 340px;
    padding: 15px 24px;
    border: 2px solid #00ff66;
    border-radius: 35px;
    text-decoration: none;
    color: #fff;
    font-family: 'Digital-7', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    background: rgba(0, 255, 102, 0.05);
    box-shadow:
        0 0 10px rgba(0, 255, 102, 0.5),
        0 0 20px rgba(0, 255, 102, 0.3),
        inset 0 0 10px rgba(0, 255, 102, 0.15);
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(0, 255, 102, 0.6);
    transition: all 0.3s;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    animation: websitePillGlow 3s infinite ease-in-out;
    opacity: 0;
}

@keyframes websitePillGlow {
    0%, 100% {
        box-shadow:
            0 0 10px rgba(0, 255, 102, 0.4),
            0 0 20px rgba(0, 255, 102, 0.2),
            inset 0 0 8px rgba(0, 255, 102, 0.1);
    }
    50% {
        box-shadow:
            0 0 20px rgba(0, 255, 102, 0.7),
            0 0 40px rgba(0, 255, 102, 0.35),
            inset 0 0 15px rgba(0, 255, 102, 0.2);
    }
}

.website-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.15), transparent);
    animation: pillSweep 3s linear infinite;
}

@keyframes pillSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

.website-pill .contact-svg {
    color: #00ff66;
    filter: drop-shadow(0 0 6px rgba(0, 255, 102, 0.8));
}

.website-pill:hover {
    background: rgba(0, 255, 102, 0.12);
    box-shadow:
        0 0 25px rgba(0, 255, 102, 0.8),
        0 0 50px rgba(0, 255, 102, 0.4),
        inset 0 0 20px rgba(0, 255, 102, 0.25);
    transform: scale(1.03);
    border-color: #fff;
}