:root {
    --primary-neon: #00ff41;
    --secondary-neon: #ff0080;
    --accent-neon: #00ffff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --dark-surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --gradient-primary: linear-gradient(135deg, #00ff41, #00ffff);
    --gradient-secondary: linear-gradient(135deg, #ff0080, #ff4000);
    --shadow-neon: 0 0 20px rgba(0, 255, 65, 0.5);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.text-neon {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.bg-cyber {
    background: linear-gradient(145deg, var(--dark-bg), var(--darker-bg));
}

.cyber-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    transition: var(--transition-fast);
}

.navbar-brand .brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-neon) !important;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--primary-neon);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 128, 0.05) 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.btn-neon {
    background: var(--gradient-primary);
    border: none;
    color: var(--dark-bg);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    color: var(--dark-bg);
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-outline-neon {
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--primary-neon);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-neon:hover {
    background: var(--primary-neon);
    color: var(--dark-bg);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.cyber-box {
    position: relative;
    padding: 20px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    backdrop-filter: blur(10px);
}

.cyber-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
}

.cyber-box:hover::before {
    opacity: 0.3;
}

.cyber-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1.2); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-neon);
    border-bottom: 2px solid var(--primary-neon);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.expert-image-wrapper {
    position: relative;
}

.expert-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 65, 0.3);
    backdrop-filter: blur(10px);
}

.expert-stats {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--primary-neon);
    transition: var(--transition-fast);
}

.expertise-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(10px);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.timeline-time {
    font-family: 'Orbitron', monospace;
    color: var(--primary-neon);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

.registration-form {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cyber-input {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 12px 15px;
    transition: var(--transition-fast);
}

.cyber-input:focus {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    color: var(--text-primary);
}

.cyber-input::placeholder {
    color: var(--text-muted);
}

.form-check-input {
    background-color: rgba(26, 26, 26, 0.8);
    border-color: var(--primary-neon);
}

.form-check-input:checked {
    background-color: var(--primary-neon);
    border-color: var(--primary-neon);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 65, 0.3);
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
    pointer-events: none;
}

.contact-info {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.contact-details h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-neon);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.footer-cyber {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    position: relative;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.footer-brand img {
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.3));
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(0, 255, 65, 0.2);
    color: var(--primary-neon);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.footer-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-neon);
    width: 20px;
}

.footer-divider {
    border-color: rgba(0, 255, 65, 0.3);
    margin: 2rem 0 1rem;
}

.copyright {
    color: var(--text-secondary);
}

.footer-tech-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-neon {
    text-align: center;
    background: rgba(0, 255, 65, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-link {
    color: var(--primary-neon);
    text-decoration: none;
}

.cookie-link:hover {
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.privacy-page {
    padding-top: 100px;
    min-height: 100vh;
}

.privacy-hero {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    text-align: center;
}

.privacy-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
}

.privacy-subtitle {
    color: var(--text-secondary);
    font-style: italic;
}

.privacy-content {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.8));
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
}

.privacy-section {
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    padding-bottom: 2rem;
}

.privacy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-heading {
    color: var(--primary-neon);
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.privacy-definitions, .purpose-list, .legal-basis {
    margin-top: 1rem;
}

.definition-item, .basis-item {
    background: rgba(26, 26, 26, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-neon);
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.category-card:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    font-size: 1.5rem;
}

.category-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    color: var(--text-secondary);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.category-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-neon);
    font-size: 0.8rem;
}

.purpose-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.purpose-item:hover {
    background: rgba(26, 26, 26, 0.6);
}

.cookies-info {
    margin-top: 1rem;
}

.cookie-type {
    background: rgba(26, 26, 26, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-neon);
}

.cookie-type h5 {
    color: var(--accent-neon);
    margin-bottom: 0.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.right-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-fast);
}

.right-card:hover {
    border-color: var(--primary-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.2);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.right-card h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.security-measures {
    margin-top: 1rem;
}

.measure-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-neon);
    transition: var(--transition-fast);
}

.measure-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(5px);
}

.contact-details-privacy {
    margin-top: 1rem;
}

.contact-method {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 5px;
}

.contact-method a {
    text-decoration: none;
}

.contact-method a:hover {
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.update-notice {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    color: var(--primary-neon);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0 0 1rem 0;
        text-align: center;
    }
    
    .expert-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: 3px;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .privacy-content {
        padding: 2rem 1rem;
    }
    
    .data-categories {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .tech-badges {
        justify-content: center;
    }
    
    .footer-cyber {
        text-align: center;
    }
    
    .footer-tech-info {
        text-align: center;
        margin-top: 1rem;
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

.loading-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 65, 0.3);
    border-top: 3px solid var(--primary-neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyber-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.1) 2px,
            rgba(0, 255, 65, 0.1) 4px
        );
    animation: noise 0.2s linear infinite;
}

@keyframes noise {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}


.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-buttons a {
    margin: 0 !important;
    width: 100%;
}