:root {
    --primary-color: #0d0d0d;
    --secondary-color: #1a1a1a;
    --accent-color: #00ffcc;
    --text-color: #e0e0e0;
    --glow-color-youtube: rgba(255, 0, 0, 0.8);
    --glow-color-instagram: rgba(225, 48, 108, 0.8);
    --glow-color-twitter: rgba(29, 161, 242, 0.8);
}

body {
    font-family: 'Roboto Mono', monospace;
    background-color: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    z-index: 2;
}

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

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    margin-block-end: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    position: relative;
}

.tag-line {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-color);s
    /*color: rgba(224, 224, 224, 0.5);*/
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    position: relative;

}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    overflow: hidden;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(10% 0 80% 0); }
    100% { clip-path: inset(40% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(70% 0 10% 0); }
    100% { clip-path: inset(20% 0 50% 0); }
}

.profile-card {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2), inset 0 0 10px rgba(0, 255, 204, 0.1);
    animation: slideInUp 1s ease-in-out forwards;
    display: inline-block;
    transform-style: preserve-3d; /* For 3D transforms */
}

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

.profile-picture-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-inline: auto;
    margin-block-end: 2rem;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-picture-container:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--accent-color);
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--text-color);
    font-size: 2.5rem;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link.youtube:hover {
    color: #ff0000;
    text-shadow: 0 0 15px var(--glow-color-youtube);
}

.social-link.instagram:hover {
    color: #e1306c;
    text-shadow: 0 0 15px var(--glow-color-instagram);
}

.social-link.twitter:hover {
    color: #1da1f2;
    text-shadow: 0 0 15px var(--glow-color-twitter);
}

footer {
    margin-block-start: 3rem;
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.5);
}

/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 255, 204, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 204, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: pan-grid 30s linear infinite;
    z-index: 0;
}

@keyframes pan-grid {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}


/* Responsive Design */
@media (max-width: 600px) {
    .brand-name {
        font-size: 3rem;
    }

    .profile-card {
        padding: 2rem;
    }
}
