:root {
    --cp-yellow: #fcee0a;
    --cp-cyan: #00f0ff;
    --cp-red: #ff003c;
    --cp-black: #000000;
    --cp-main: #fcee0a;
    /* Default Yellow for SQLi */
    --cp-accent: #00f0ff;
    --cp-dark-bg: #1a1a1a;
    --cp-text: #ffffff;
    --glitch-offset: 3px;
}

@font-face {
    font-family: 'Cyberpunk';
    src: url('https://fonts.cdnfonts.com/s/29465/BlenderPro-Book.woff') format('woff');
}

body {
    background-color: var(--cp-yellow);
    color: var(--cp-black);
    font-family: 'Cyberpunk', 'Courier New', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(252, 238, 10, 0.9), rgba(252, 238, 10, 0.9)),
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="%23000" fill-opacity="0.05"><path d="M0 0h50v50H0zM50 50h50v50H50z"/></g></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Glitch Header */
h1 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    margin-bottom: 50px;
    color: var(--cp-black);
}

h1::before,
h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cp-yellow);
}

h1::before {
    left: var(--glitch-offset);
    text-shadow: -2px 0 var(--cp-red);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

h1::after {
    left: calc(var(--glitch-offset) * -1);
    text-shadow: -2px 0 var(--cp-cyan);
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }

    20% {
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }

    40% {
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    }

    60% {
        clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    }

    80% {
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    100% {
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: polygon(0 82%, 100% 82%, 100% 85%, 0 85%);
    }

    20% {
        clip-path: polygon(0 95%, 100% 95%, 100% 95%, 0 95%);
    }

    40% {
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    60% {
        clip-path: polygon(0 51%, 100% 51%, 100% 52%, 0 52%);
    }

    80% {
        clip-path: polygon(0 93%, 100% 93%, 100% 93%, 0 93%);
    }

    100% {
        clip-path: polygon(0 64%, 100% 64%, 100% 64%, 0 64%);
    }
}

/* Cyberpunk Card */
.cp-card {
    background-color: var(--cp-dark-bg);
    color: var(--cp-text);
    padding: 30px;
    border-left: 10px solid var(--cp-cyan);
    margin-bottom: 30px;
    position: relative;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            0 100%);
}

.cp-card h2 {
    color: var(--cp-cyan);
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-top: 0;
}

.cp-card p,
.cp-card ul {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Buttons */
.cp-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--cp-main);
    color: var(--cp-main);
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    clip-path: polygon(10px 0,
            100% 0,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            0 100%,
            0 10px);
}

.cp-btn:hover {
    background-color: var(--cp-main);
    color: var(--cp-black);
    text-shadow: none;
}

.cp-btn-primary {
    border-color: var(--cp-cyan);
    color: var(--cp-cyan);
}

.cp-btn-primary:hover {
    background-color: var(--cp-cyan) !important;
    color: var(--cp-black) !important;
}

/* Override inline styles for buttons */
.cp-btn:hover {
    background-color: var(--cp-main) !important;
    color: var(--cp-black) !important;
}

.cp-btn[style*="--cp-yellow"]:hover {
    background-color: var(--cp-yellow) !important;
    color: var(--cp-black) !important;
}

.cp-btn[style*="--cp-cyan"]:hover {
    background-color: var(--cp-cyan) !important;
    color: var(--cp-black) !important;
}

.cp-btn[style*="--cp-magenta"]:hover {
    background-color: #ff003c !important;
    color: var(--cp-black) !important;
}

.cp-btn[style*="--cp-black"]:hover {
    background-color: var(--cp-black) !important;
    color: var(--cp-yellow) !important;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--cp-accent);
    color: var(--cp-accent);
    font-family: inherit;
    font-size: 1.1rem;
}

input:focus {
    outline: none;
    box-shadow: 0 0 10px var(--cp-accent);
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* Decorative elements */
.deco-line {
    height: 2px;
    background-color: var(--cp-black);
    margin: 40px 0;
    position: relative;
}

.deco-line::after {
    content: '///_SEPARATOR';
    position: absolute;
    right: 0;
    top: -10px;
    background: var(--cp-yellow);
    padding: 0 10px;
    font-size: 0.8rem;
    font-weight: bold;
}