:root {
    /* Farben adaptiert auf das hochgeladene Design (dunkel, blau-leuchtend) */
    --bg-color: #0a0e17;
    --text-color: #f0f4f8;
    --accent-light: #cceeff;
    /* Leuchtendes Cyan */
    --accent-glow: #33b5e5;
    --nav-bg: rgba(10, 14, 23, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Hilfsklasse für Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Header & Mittige Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* Wenn gescrollt wird, verschwimmt der Hintergrund (Glassmorphism-Effekt) */
.main-header.scrolled {
    background-color: var(--nav-bg);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.center-nav {
    display: flex;
    justify-content: center;
    /* Das sorgt für die mittige Navigation */
    align-items: center;
}

.center-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 45px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(51, 181, 229, 0.05);
    backdrop-filter: blur(5px);
}

.center-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

/* Glow-Hover Effekt für die Links */
.center-nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-light);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.center-nav a:hover {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(204, 238, 255, 0.8);
}

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

/* --- Hero Section mit Bild als Background --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Hier wird das Cover-Bild eingebunden. Pfad anpassen! */
    background-image: url('../img/cover.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Verhindert harten Kanten & blendet fließend ins Dark Theme der restlichen Page über */
    background: linear-gradient(to bottom,
            rgba(10, 14, 23, 0.4) 0%,
            rgba(10, 14, 23, 0.1) 60%,
            var(--bg-color) 100%);
    pointer-events: none;
}

/* --- Leistungen (Services) --- */
.services-section {
    padding: 120px 20px 80px;
    background-color: var(--bg-color);
}

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

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: var(--text-color);
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(51, 181, 229, 0.1);
    border-color: rgba(51, 181, 229, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-light);
    font-weight: 600;
}

.service-card p {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Über Mich (About) --- */
.about-section {
    padding: 100px 20px;
    background-color: #0d131f; /* Leicht abweichend für visuellen Bruch */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.about-text .accent-text {
    color: var(--accent-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(204, 238, 255, 0.3);
}

.about-text p {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.3));
    border-radius: 50%;
    border: 1px solid rgba(51, 181, 229, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 40px rgba(51, 181, 229, 0.1);
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2; /* Keeps it above the visual rings */
    border: 2px solid rgba(51, 181, 229, 0.5);
    box-shadow: 0 0 30px rgba(51, 181, 229, 0.3);
    background-color: var(--bg-color); /* Fallback falls das Logo transparent ist */
}

/* --- Animated Tech Badges --- */
.tech-stack-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.tech-badge {
    background: rgba(51, 181, 229, 0.05);
    border: 1px solid rgba(51, 181, 229, 0.2);
    padding: 8px 18px;
    border-radius: 20px;
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

.tech-badge:hover {
    background: rgba(51, 181, 229, 0.15);
    border-color: rgba(51, 181, 229, 0.5);
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(51, 181, 229, 0.3);
}

.tech-badge:nth-child(2) { animation-delay: 0.2s; }
.tech-badge:nth-child(3) { animation-delay: 0.4s; }
.tech-badge:nth-child(4) { animation-delay: 0.6s; }
.tech-badge:nth-child(5) { animation-delay: 0.8s; }

@keyframes floatBadge {
    0% { transform: translateY(0); box-shadow: 0 0 5px rgba(51, 181, 229, 0); }
    100% { transform: translateY(-6px); box-shadow: 0 5px 15px rgba(51, 181, 229, 0.1); border-color: rgba(51, 181, 229, 0.3); }
}

/* --- Visual Rings & Schaltnetz --- */
.circuit-layer-svg {
    position: absolute;
    width: 450px;
    height: 450px;
    z-index: 1; /* Hinter dem Logo */
    pointer-events: none;
    /* Wird durch Flexbox in .visual-placeholder zentriert */
}

.dim-path {
    fill: none;
    stroke: rgba(51, 181, 229, 0.15);
    stroke-width: 1.5;
}

.glow-path {
    fill: none;
    stroke: var(--accent-glow);
    stroke-width: 2.5;
    filter: url(#glow);
    stroke-linecap: round;
}

.node {
    fill: var(--accent-glow);
    filter: url(#glow);
}

/* Animation Data-Flows */
.pulse-1 { stroke-dasharray: 40 250; animation: flow 3s linear infinite; }
.pulse-2 { stroke-dasharray: 60 300; animation: flow 4s linear infinite 1s; }
.pulse-3 { stroke-dasharray: 30 200; animation: flow 2.5s linear infinite 0.5s; }
.pulse-4 { stroke-dasharray: 80 400; animation: flow 5s linear infinite 2s; }

.pulse-node-1 { animation: pulseNode 3s linear infinite; }
.pulse-node-2 { animation: pulseNode 4s linear infinite 1s; }
.pulse-node-3 { animation: pulseNode 2.5s linear infinite 0.5s; }
.pulse-node-4 { animation: pulseNode 5s linear infinite 2s; }

@keyframes flow {
    from { stroke-dashoffset: 280; }
    to { stroke-dashoffset: -50; }
}

@keyframes pulseNode {
    0%, 75%, 100% { opacity: 0.4; fill: var(--accent-glow); }
    85%, 95% { opacity: 1; fill: #fff; }
}

/* Light Mode SVG adjustment */
html.light-theme .circuit-layer-svg {
    filter: invert(1) hue-rotate(180deg);
}

.visual-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px dashed rgba(51, 181, 229, 0.3);
    border-top: 1px solid rgba(51, 181, 229, 0.8);
    animation: spinRing 15s linear infinite;
    z-index: 1;
}

.visual-ring-2 {
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(204, 238, 255, 0.2);
    border-bottom: 1px solid rgba(204, 238, 255, 0.6);
    animation: spinRingReverse 20s linear infinite;
    z-index: 1;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinRingReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in-right {
    transform: translateX(30px) translateY(0);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}


/* --- Kontakt (Contact Form) --- */
.contact-section {
    padding: 120px 20px;
    background-color: var(--bg-color);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    color: #a0aec0;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.encryption-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(51, 181, 229, 0.05);
    border: 1px solid rgba(51, 181, 229, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
}

.encryption-notice svg {
    width: 24px;
    height: 24px;
    color: var(--accent-glow);
    flex-shrink: 0;
    margin-top: 2px;
}

.encryption-notice span {
    color: #cceeff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.encryption-notice strong {
    color: var(--accent-glow);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    box-shadow: 0 0 15px rgba(51, 181, 229, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

/* Floating Labels */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #718096;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 0.8rem;
    color: var(--accent-glow);
    background-color: var(--bg-color); /* Maskiert die Linie dahinter etwas */
    padding: 0 5px;
    border-radius: 4px;
}

.gdpr-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.gdpr-group input[type="checkbox"] {
    appearance: none;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 4px 0 0 0;
    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: grid;
    place-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.gdpr-group input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--accent-glow);
    background-color: var(--accent-glow);
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.gdpr-group input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.gdpr-group input[type="checkbox"]:checked {
    border-color: var(--accent-glow);
}

.gdpr-group label {
    color: #a0aec0;
    font-size: 0.85rem;
    line-height: 1.6;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, rgba(51, 181, 229, 0.8), rgba(0, 153, 204, 0.8));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #33b5e5, #0099cc);
    box-shadow: 0 0 20px rgba(51, 181, 229, 0.4);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* --- Footer --- */
footer {
    background-color: #06090e;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(204, 238, 255, 0.4);
    letter-spacing: -1px;
}

.footer-info p {
    color: #a0aec0;
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-top: -5px;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-light);
}

/* --- Mobile Nav Toggle Button --- */
#mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    padding: 10px;
}

#mobile-toggle svg {
    width: 32px;
    height: 32px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .main-header {
        justify-content: center;
        padding: 15px 0;
    }
    
    #mobile-toggle {
        display: block;
    }

    .center-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        z-index: 1000;
        border-right: none;
    }
    
    .center-nav.open {
        left: 0;
    }

    .center-nav ul {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 40px; /* Mehr Abstand zwischen Links */
        padding: 20px;
        align-items: center;
        margin-top: 100px; /* Deutlicher Abstand zum oberen Rand */
    }

    .center-nav a {
        font-size: 1.8rem; /* Größere Schrift auf Mobile */
        padding: 10px;
    }

    .services-section h2, .about-text h2, .contact-section h2, .legal-section h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .tech-stack-container {
        justify-content: center;
    }

    .about-visual {
        margin-top: 40px;
        transform: scale(0.85); /* Etwas kleiner auf Mobile */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        margin: 0;
    }
}

/* --- Theme Toggle & Light Mode --- */
/* Wir nutzen eine smarte Invertierung für einen nahtlosen Wechsel ohne Refactoring */
html.light-theme {
    filter: invert(1) hue-rotate(180deg);
}

/* Wichtige visuelle Elemente wieder zurück-invertieren */
html.light-theme .hero,
html.light-theme img {
    filter: invert(1) hue-rotate(180deg);
}

/* Korrektur für Glow-Effekte im Light Mode */
html.light-theme .glow-orb {
    filter: invert(1) hue-rotate(180deg) blur(25px);
}

/* Navbar im Light-Mode sofort mit Hintergrund versehen für bessere Lesbarkeit */
html.light-theme .main-header {
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-toggle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-glow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(51, 181, 229, 0.3);
}

@media (max-width: 768px) {
    .theme-toggle {
        right: 15px;
        width: 42px; /* Etwas größer und besser greifbar */
        height: 42px;
    }
}

/* --- Legal / Impressum --- */
.legal-section {
    padding: 150px 20px 80px;
    background-color: var(--bg-color);
    min-height: 80vh;
}

.legal-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
    font-weight: 800;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    padding: 60px 60px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content h3 {
    color: var(--accent-light);
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content a {
    color: var(--accent-glow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 110px 15px 50px;
    }
    .legal-content {
        padding: 35px 20px;
        margin: 0;
        border-radius: 16px;
    }
    .legal-content h3 {
        font-size: 1.25rem;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    .legal-content p {
        font-size: 1rem;
        word-break: break-word; /* Verhindert das Ausbrechen langer Wörter auf Mobile */
    }
}

/* --- Success Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(51, 181, 229, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(51, 181, 229, 0.15);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.hidden .modal-content {
    transform: translateY(50px);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(51, 181, 229, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--accent-glow);
    box-shadow: 0 0 20px rgba(51, 181, 229, 0.4);
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-glow);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.modal-content p {
    color: #a0aec0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-content .submit-btn {
    width: auto;
    padding: 12px 30px;
}