/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
    --bg-color: #050505;
    --neon-cyan: #00f3ff;
    --neon-pink: #ff0055;
    --neon-purple: #bd00ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --card-radius: 16px;
}

/* GRUNDLAGEN & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cursor nur auf PC verstecken, auf Handy stört das sonst */
@media (min-width: 1025px) {
    * {
        cursor: none;
    }
}

html, body {
    width: 100%;
    overflow-x: hidden; /* VERHINDERT SEITLICHES SCROLLEN */
    position: relative;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
}

.holo-gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
    /* FIX: Orbs dürfen keine Maus-Events blockieren */
    pointer-events: none; 
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-cyan), transparent 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-purple), transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Typography & Utilities */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%; /* Sicherstellen, dass Container responsive ist */
}

.section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-left: 4px solid var(--neon-cyan);
    padding-left: 1rem;
    position: relative;
    display: inline-block;
    max-width: 100%; /* Verhindert Überlaufen */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 50px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-logo span { color: var(--neon-cyan); }

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    opacity: 0.7;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer; /* Wichtig für Mobile */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.glitch { position: relative; }

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--neon-pink);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--neon-cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(42px, 9999px, 97px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.btn-holo {
    position: relative;
    padding: 1rem 2.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.btn-holo:hover {
    background: var(--neon-cyan);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-holo:hover .btn-shine {
    left: 200%;
    transition: 0.5s;
}

.btn-outline {
    padding: 1rem 2.5rem;
    border: 1px solid var(--glass-border);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holo-card {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.1);
    transition: 0.5s;
}

.holo-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: var(--neon-cyan);
}

.code-snippet pre {
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

.mouse-icon {
    width: 20px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 5px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Glass Cards (About) */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.glass-card:hover::before { opacity: 1; }

.card-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.glass-card p { color: var(--text-muted); }

.stack-list {
    list-style: none;
    padding-left: 0;
}

.stack-list li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stack-list li::before {
    content: '>';
    color: var(--neon-pink);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    /* FIX: Standard Grid für Desktop */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    width: 100%;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: 0.3s;
    /* FIX: Verhindert, dass Karten überlaufen */
    max-width: 100%;
}

.project-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.2);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.color-1 { background: linear-gradient(45deg, #111, #222); }
.color-2 { background: linear-gradient(45deg, #1a1a2e, #16213e); }
.color-3 { background: linear-gradient(45deg, #2c003e, #1a0024); }

.project-card:hover .placeholder-img { transform: scale(1.1); }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: 0.3s;
}

.project-card:hover .overlay { opacity: 1; }

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: 0.3s;
    cursor: pointer;
}

.project-card:hover .btn-icon { transform: translateY(0); }
.btn-icon:hover { background: var(--neon-cyan); }

.project-info { padding: 2rem; }

.project-info h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--card-radius);
    width: 100%;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

input, textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus { border-bottom-color: var(--neon-cyan); }

label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    transition: 0.3s;
    pointer-events: none;
}

input:focus~label,
input:not(:placeholder-shown)~label,
textarea:focus~label,
textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: 0.3s;
}

input:focus~.input-highlight,
textarea:focus~.input-highlight { width: 100%; }

.submit-btn {
    width: 100%;
    background: transparent;
    cursor: pointer;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Custom Cursor */
.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 243, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:active .cursor-outline {
    width: 20px;
    height: 20px;
    background: rgba(0, 243, 255, 0.2);
}

/* --- AI Chat Styles --- */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.chat-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.chat-terminal {
    width: 90%;
    max-width: 700px;
    height: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.terminal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 243, 255, 0.05);
}

.header-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-light {
    width: 8px;
    height: 8px;
    background-color: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.terminal-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.terminal-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terminal-body::-webkit-scrollbar { width: 6px; }
.terminal-body::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 3px;
}

.msg {
    max-width: 85%;
    line-height: 1.5;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.msg.bot {
    align-self: flex-start;
    color: #e0e0e0;
}

.msg.user {
    align-self: flex-end;
    text-align: right;
    color: var(--neon-purple);
}

.prefix {
    font-weight: bold;
    margin-right: 8px;
    color: var(--neon-cyan);
}

.msg.user .prefix {
    color: var(--neon-pink);
    margin-right: 0;
    margin-left: 8px;
}

.h-text {
    color: var(--neon-cyan);
    font-weight: 600;
}

.terminal-input-area {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.prompt-sign {
    color: var(--neon-cyan);
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
}

#user-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    border-bottom: none !important;
    padding: 0;
}

#user-input:focus { box-shadow: none; }

.send-btn {
    background: none;
    border: none;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    transition: transform 0.2s;
    cursor: pointer;
}

.send-btn:hover { transform: translateX(3px); }


/* ========================================= */
/* RESPONSIVE / MOBILE FIXES           */
/* ========================================= */

/* 1. TABLETS & KLEINE LAPTOPS */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Reduziert den Gap etwas, damit mehr Platz ist */
        gap: 1.5rem; 
    }
}

/* 2. HANDYS & MOBILE GERÄTE */
@media (max-width: 768px) {
    
    /* Globales Reset für Mobile */
    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100vw;
    }

    /* Navigation */
    .glass-nav {
        padding: 1rem 1.5rem;
    }
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    /* Hero Section */
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }
    .hero-visual { display: none; }
    .hero-cta { justify-content: center; }
    
    /* Schrift verkleinern, damit sie nicht ausbricht */
    .hero-title {
        font-size: 2.8rem;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    /* About Grid: Alles untereinander */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* PROJEKTE: Das wichtigste Fix */
    .projects-grid {
        /* Flexbox ist auf Handys oft stabiler als Grid */
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .project-card {
        width: 100%;
        min-width: 0; /* Verhindert das 350px-Problem */
        margin: 0;
    }

    /* Kontakt & Footer */
    .contact-wrapper {
        padding: 1.5rem;
    }

    /* Orbs dimmen/verstecken, da sie oft Layout-Bugs verursachen */
    .holo-gradient-orb {
        opacity: 0.15;
        width: 300px; /* Kleiner machen */
        height: 300px;
    }
}