/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0f0524 0%, #1f0b45 50%, #341265 100%);
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 5, 36, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(198, 0, 255, 0.3);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-family: 'Audiowide', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: #c600ff;
    text-shadow: 0 0 20px rgba(198, 0, 255, 0.7);
}

.tagline {
    font-size: 12px;
    color: #00ffe0;
    border: 1px solid #00ffe0;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #00ffe0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0524 0%, #1f0b45 50%, #341265 100%);
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #c600ff, transparent),
        radial-gradient(2px 2px at 40px 70px, #00ffe0, transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(2px 2px at 130px 80px, #ff00aa, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatParticles 20s infinite linear;
    opacity: 0.4;
}

@keyframes floatParticles {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-50px) translateX(25px); }
    50% { transform: translateY(-100px) translateX(0px); }
    75% { transform: translateY(-50px) translateX(-25px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.cyberpunk-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 95%, rgba(0, 255, 224, 0.1) 96%, transparent 96%),
        linear-gradient(0deg, transparent 95%, rgba(198, 0, 255, 0.1) 96%, transparent 96%);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Audiowide', monospace;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glitchText 5s ease-in-out infinite alternate;
}

@keyframes glitchText {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(198, 0, 255, 0.6),
            0 0 30px rgba(198, 0, 255, 0.3);
    }
    33% {
        text-shadow: 
            2px 0 20px rgba(198, 0, 255, 0.6),
            -1px 0 30px rgba(0, 255, 224, 0.3);
    }
    66% {
        text-shadow: 
            -2px 0 20px rgba(0, 255, 224, 0.6),
            1px 0 30px rgba(198, 0, 255, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(45deg, #c600ff, #00ffe0);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(198, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(198, 0, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #00ffe0;
    border: 2px solid #00ffe0;
    box-shadow: 0 0 10px rgba(0, 255, 224, 0.4);
}

.btn-secondary:hover {
    color: #0f0524;
    background: #00ffe0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.6);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(198, 0, 255, 0.3);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(198, 0, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 40px rgba(198, 0, 255, 0.8), 0 0 80px rgba(0, 255, 224, 0.4);
    }
}

/* Academy Section */
.academy {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f0b45 0%, #341265 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Audiowide', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.academy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(198, 0, 255, 0.2);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
    overflow: hidden;
}

.academy-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: 5px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
    opacity: 0;
    transition: all 0.5s ease;
}

.academy-card:hover::before {
    opacity: 1;
    top: 0;
}

.academy-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #c600ff;
    box-shadow: 0 20px 40px rgba(198, 0, 255, 0.3), 0 0 30px rgba(0, 255, 224, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #c600ff, #00ffe0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.academy-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ffe0;
    font-family: 'Audiowide', monospace;
}

.academy-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Programs Section */
.programs {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0524 0%, #1f0b45 100%);
    position: relative;
    overflow: hidden;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(198, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 224, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(198, 0, 255, 0.2);
    transition: all 0.5s ease;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 0, 255, 0.2), rgba(0, 255, 224, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.program-card:hover::after {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-15px);
    border-color: #c600ff;
    box-shadow: 0 20px 40px rgba(198, 0, 255, 0.3), 0 0 30px rgba(0, 255, 224, 0.2);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.program-content {
    padding: 30px;
    position: relative;
}

.program-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.program-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ffe0;
    font-family: 'Audiowide', monospace;
}

.program-content p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.program-content ul {
    list-style: none;
}

.program-content li {
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.program-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c600ff;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #341265 0%, #1f0b45 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: 'Audiowide', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #c600ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.about-text p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.15rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border: 1px solid rgba(198, 0, 255, 0.2);
    transition: all 0.5s ease;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.stat:hover {
    border-color: #c600ff;
    box-shadow: 0 10px 20px rgba(198, 0, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Audiowide', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #00ffe0;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(0, 255, 224, 0.5);
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #c600ff;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid rgba(198, 0, 255, 0.3);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    filter: brightness(1.1) contrast(1.1);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0524 0%, #1f0b45 100%);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #c600ff;
    font-family: 'Audiowide', monospace;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.15rem;
}

.contact-item {
    color: #cccccc;
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid rgba(198, 0, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #00ffe0;
    transform: translateX(5px);
}

.contact-item strong {
    color: #00ffe0;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 0;
    border: 1px solid rgba(198, 0, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    background: rgba(15, 5, 36, 0.5);
    border: 1px solid rgba(198, 0, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(204, 204, 204, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffe0;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.3);
}

/* Footer */
.footer {
    background: #0f0524;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(198, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-family: 'Audiowide', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    color: #00ffe0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 224, 0.3);
}

.social-icon:hover {
    background: #00ffe0;
    color: #0f0524;
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #c600ff;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Audiowide', monospace;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c600ff, #00ffe0);
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    padding-left: 15px;
    position: relative;
}

.footer-column a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #00ffe0;
    font-weight: bold;
}

.footer-column a:hover {
    color: #00ffe0;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 2.3rem;
    }

    .program-card {
        transform: none !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes floatElement {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.academy-card,
.program-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-content h1 {
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
}

.hero-content p, 
.hero-buttons {
    animation: fadeInRight 1.2s ease-out forwards;
    opacity: 0;
}

.hero-image {
    animation: fadeInLeft 1.2s ease-out forwards;
    opacity: 0;
}

.glitch-effect {
    position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glitch-effect::before {
    color: #c600ff;
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-effect::after {
    color: #00ffe0;
    animation: glitch-anim2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        transform: translateX(-2px) translateY(2px);
    }
    25% {
        transform: translateX(2px) translateY(-2px);
    }
    50% {
        transform: translateX(-1px) translateY(1px);
    }
    75% {
        transform: translateX(1px) translateY(-1px);
    }
    100% {
        transform: translateX(-2px) translateY(2px);
    }
}

@keyframes glitch-anim2 {
    0% {
        transform: translateX(2px) translateY(2px);
    }
    25% {
        transform: translateX(-2px) translateY(-2px);
    }
    50% {
        transform: translateX(1px) translateY(1px);
    }
    75% {
        transform: translateX(-1px) translateY(-1px);
    }
    100% {
        transform: translateX(2px) translateY(2px);
    }
}

/* Scroll animations with delay */
.academy-card:nth-child(1) { animation-delay: 0.1s; }
.academy-card:nth-child(2) { animation-delay: 0.3s; }
.academy-card:nth-child(3) { animation-delay: 0.5s; }
.academy-card:nth-child(4) { animation-delay: 0.7s; }

.program-card:nth-child(1) { animation-delay: 0.2s; }
.program-card:nth-child(2) { animation-delay: 0.4s; }
.program-card:nth-child(3) { animation-delay: 0.6s; }

.floating-element {
    animation: floatElement 4s ease-in-out infinite;
}

/* New neon glow effects */
.neon-text {
    text-shadow: 
        0 0 5px #c600ff,
        0 0 10px #c600ff,
        0 0 20px #c600ff,
        0 0 40px #c600ff;
}

.neon-border {
    box-shadow: 
        0 0 5px #00ffe0,
        0 0 10px #00ffe0,
        0 0 20px #00ffe0;
}

/* Holographic effect */
.holographic {
    position: relative;
    overflow: hidden;
}

.holographic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: holographicShift 10s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes holographicShift {
    0% {
        transform: rotate(45deg) translateY(-100%);
    }
    100% {
        transform: rotate(45deg) translateY(100%);
    }
}