:root {
    --neon-cyan: #00ffff;
    --neon-purple: #9d00ff;
    --bg-black: #050505;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-black);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    overflow: hidden;
}

#neon-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-container {
    position: relative;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan), inset 0 0 10px var(--neon-cyan);
    background: rgba(0, 0, 0, 0.8);
    max-width: 600px;
    width: 90%;
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    z-index: 1;
}

.main-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--neon-purple);
    z-index: -1;
    filter: blur(5px);
    opacity: 0.5;
}

h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 5px;
    color: white;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    font-weight: 900;
    text-transform: uppercase;
}

.badge {
    background-color: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    display: inline-block;
    padding: 10px 40px;
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    box-shadow: 0 0 10px var(--neon-cyan);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-top: 20px;
    padding: 0 20px;
}

.highlight {
    color: white;
    font-weight: bold;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: var(--neon-cyan);
    font-size: 2rem;
    margin: 0 15px;
    transition: color 0.3s, text-shadow 0.3s;
}

.social-icons a:hover {
    color: white;
    text-shadow: 0 0 10px var(--neon-purple);
}

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

.main-container {
    animation: flicker 3s infinite;
}