/* ALPHA CRAFT - FUTURE REVOLUTION THEME */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --bg-dark: #050510;
    /* Deeper Dark */
    --tech-blue: #00f3ff;
    /* Cyan Neon */
    --tech-purple: #bc13fe;
    /* Purple Neon */
    --tech-red: #ff0055;
    /* Alert Red */
    --glass-panel: rgba(10, 10, 30, 0.6);
}

body {
    background-color: var(--bg-dark);
    color: #e2e8f0;
    font-family: 'Rajdhani', sans-serif;
    /* Futuristic Body Font */
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 0%, #050510 90%),
        linear-gradient(rgba(0, 243, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.07) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    background-attachment: fixed;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Orbitron', sans-serif;
    /* Sci-Fi Header Font */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--tech-blue);
    border-radius: 3px;
}

/* GLITCH EFFECT */
.glitch {
    position: relative;
    color: white;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--tech-red);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--tech-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(13px, 9999px, 81px, 0);
    }

    20% {
        clip: rect(108px, 9999px, 9px, 0);
    }

    40% {
        clip: rect(32px, 9999px, 56px, 0);
    }

    60% {
        clip: rect(85px, 9999px, 24px, 0);
    }

    80% {
        clip: rect(54px, 9999px, 134px, 0);
    }

    100% {
        clip: rect(6px, 9999px, 56px, 0);
    }
}

/* CYBER CARD */
.cyber-card {
    background: var(--glass-panel);
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    /* Angled Corner */
}

.cyber-card:hover {
    border-color: var(--tech-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

/* NEON BUTTON */
.btn-neon {
    position: relative;
    padding: 12px 30px;
    color: var(--tech-blue);
    background: transparent;
    border: 1px solid var(--tech-blue);
    overflow: hidden;
    transition: 0.3s;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.btn-neon:hover {
    background: var(--tech-blue);
    color: black;
    box-shadow: 0 0 20px var(--tech-blue);
}

/* TYPING CURSOR */
.cursor {
    display: inline-block;
    width: 10px;
    height: 2px;
    background: var(--tech-purple);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* FLOAT ANIMATION */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay-1 {
    animation-delay: 1.5s;
}

.animate-float-delay-2 {
    animation-delay: 3s;
}

.animate-float-delay-3 {
    animation-delay: 4.5s;
}