@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@100;200;300;400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 200;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 40px;
}
.glitch {
    position: relative;
    color: #dc2626;
    font-size: clamp(1.3rem, 7vw, 3.5rem);
    font-weight: 100;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: clamp(2px, 1.3vw, 9px);
    text-transform: lowercase;
    margin-bottom: 16px;
    display: block;
    width: 100%;
    max-width: 90vw;
    text-indent: calc(clamp(2px, 1.3vw, 9px) / 2);
    overflow: visible;
    z-index: 2;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.6), 0 0 30px rgba(220, 38, 38, 0.4);
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.3));
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    text-indent: 6px; /* Gleiche Einrückung wie der Haupttext */
    font-size: inherit; /* Stelle sicher, dass die font-size vererbt wird */
    letter-spacing: inherit; /* Stelle sicher, dass letter-spacing vererbt wird */
}

.glitch::before {
    color: #ff0040;
    filter: blur(8px);
    opacity: 1;
    text-shadow: 0 0 20px #ff0040, 0 0 40px #ff0040, 0 0 60px #ff0040;
    animation: textPulse 2s ease-in-out infinite;
}

.glitch::after {
    color: #0080ff;
    filter: blur(12px);
    opacity: 1;
    text-shadow: 0 0 20px #0080ff, 0 0 40px #0080ff, 0 0 60px #0080ff;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 50%, 100% {
        filter: blur(8px);
        opacity: 0.8;
        text-shadow: 0 0 15px currentColor, 0 0 30px currentColor, 0 0 45px currentColor;
    }
    25% {
        filter: blur(12px);
        opacity: 1.2;
        text-shadow: 0 0 25px currentColor, 0 0 50px currentColor, 0 0 75px currentColor;
    }
}
.subtitle {
    font-size: 1.2rem;
    color: #999999;
    font-weight: 200;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.subtitle a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

#egg-text:hover {
    color: #ff6b6b;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #dc2626, #a855f7);
    border-radius: 4px;
    border: 1px solid #333;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ef4444, #c084fc);
}

/* Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Cards */
.card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    text-align: left;
    padding: 4px;
    width: 100%;
}
.card:hover {
    border-color: #ff4040;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 64, 64, 0.15),
        inset 0 1px 0 rgba(255, 64, 64, 0.05);
}

.card-content {
    padding: 32px;
}
.card-title {
    font-size: 1.4rem;
    font-weight: 200;
    margin-bottom: 16px;
    color: #dc2626;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.card-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 1px;
    background: #ff4040;
    box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
.card-text {
    color: #d0d0d0;
    margin-bottom: 12px;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 200;
    display: block;
    text-align: left;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    text-indent: -24px;
    padding-left: 24px;
}

/* Icon alignment for card text with icons */
.card-text .lucide-icon {
    display: inline;
    vertical-align: baseline;
    position: relative;
    top: 0.1em;
}
.card-text:last-child {
    margin-bottom: 0;
}

/* Ensure text flows normally within card-text */
.card-text .text-content {
    flex: 1;
    display: inline;
}

/* Special styling */
.highlight {
    color: #ff6b6b;
    font-weight: 200;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ff6b6b, transparent);
    box-shadow: 0 0 3px rgba(255, 107, 107, 0.3);
}
.accent {
    color: #ff4757;
    font-weight: 200;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.location-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #d0d0d0;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 200;
    margin-bottom: 20px;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #dc2626;
    position: relative;
    width: 100%;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.location-badge p {
    margin: 0px;
}

/* Form styling */
.form-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    width: 100%;
}
.form-content {
    padding: 32px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.form-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 20px;
    height: 1px;
    background: #ff4040;
}
input, textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #555555;
    border-radius: 4px;
    padding: 16px;
    font-size: 1rem;
    color: #e0e0e0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 200;
    transition: all 0.3s ease;
}
input::placeholder, textarea::placeholder {
    color: #888888;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #ff4040;
    background: #222222;
    box-shadow: 0 0 0 2px rgba(255, 64, 64, 0.2);
    color: #ffffff;
}
textarea {
    resize: vertical;
    min-height: 120px;
}
.btn {
    background: #333333;
    border: 1px solid #555555;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 200;
    padding: 16px 32px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 64, 64, 0.2), transparent);
    transition: left 0.5s;
}
.btn:hover {
    background: #404040;
    border-color: #ff4040;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 64, 64, 0.3);
}
.btn:hover::before {
    left: 100%;
}
/* Messages section */
.messages-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    width: 100%;
}
.messages-header {
    padding: 24px 32px 16px;
    border-bottom: 1px solid #2a2a2a;
}
.messages-title {
    font-size: 1.4rem;
    font-weight: 200;
    color: #ffffff;
    margin: 0;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.messages-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 1px;
    background: #ff4040;
    box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}
.messages-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 16px 32px 32px;
}
.message {
    padding: 16px 0;
    border-bottom: 1px solid #383838;
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 200;
    position: relative;
}
.message:last-child {
    border-bottom: none;
}
.message:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    padding-left: 12px;
    border-radius: 4px;
}
.message:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: #ff4040;
    box-shadow: 0 0 5px rgba(255, 64, 64, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-content {
    background: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.modal-text {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 200;
}
.modal-text:last-child {
    margin-bottom: 0;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #333333;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: #444444;
    border-color: #555555;
}
/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    /* Header Mobile */
    .header {
        padding: 40px 0 30px;
    }
    .glitch {
        font-size: clamp(1.7rem, 7.5vw, 3.4rem);
        letter-spacing: clamp(3.5px, 1.6vw, 9px);
        text-indent: calc(clamp(3.5px, 1.6vw, 9px) / 2);
    }
    .subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    /* Logo Mobile */
    .synergy-logo {
        transform: scale(0.35);
        height: 180px;
        margin: -20px auto;
    }
    
    .left-heart-container {
        top: 43px;
        left: 50%;
        margin-left: -18px; /* Adjusted for mobile scale 0.35 */
    }

    .right-heart-container {
        top: 43px;
        left: 50%;
        margin-left: 145px; /* Adjusted for mobile scale 0.35 */
    }
    
    /* Use mobile keyframes */
    .left-heart {
        animation: heartbeat-left-mobile 2s ease-in-out infinite;
    }

    .right-heart {
        animation: heartbeat-right-mobile 2s ease-in-out infinite;
    }
    
    /* Cards Mobile */
    .card-content, .form-content {
        padding: 20px 16px;
    }
    .card-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    .card-title {
        font-size: 1.2rem;
    }
    
    /* Location Badge Mobile */
    .location-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    /* Form Mobile */
    .form-group {
        margin-bottom: 20px;
    }
    input, textarea {
        padding: 14px 12px;
        font-size: 1rem;
    }
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Messages Mobile */
    .messages-header {
        padding: 20px 16px 12px;
    }
    .messages-list {
        padding: 12px 16px 20px;
        max-height: 300px;
    }
    .message {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        padding: 24px 20px;
        margin: 12px;
        max-width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }
    .modal-title {
        font-size: 1.3rem;
    }
    .modal-text {
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer {
        bottom: 16px;
    }
    .footer-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (iPhone SE, etc.) */
@media (max-width: 480px) {
    .synergy-logo {
        transform: scale(0.25);
        height: 140px;
        margin: -30px auto;
    }
    
    .left-heart-container {
        top: 30px;
        left: 50%;
        margin-left: -13px; /* Adjusted for mobile scale 0.25 */
    }

    .right-heart-container {
        top: 30px;
        left: 50%;
        margin-left: 104px; /* Adjusted for mobile scale 0.25 */
    }
    
    .left-dot-container {
        top: 30px;
        left: 50%;
        margin-left: -125px; /* Proportional für mobile angepasst */
    }

    .right-dot-container {
        top: 30px;
        left: 50%;
        margin-left: 0px; /* Direkt in der Mitte für mobile */
    }
    
    /* Use small mobile keyframes */
    .left-heart {
        animation: heartbeat-left-small 2s ease-in-out infinite;
    }

    .right-heart {
        animation: heartbeat-right-small 2s ease-in-out infinite;
    }
    
    .card-content, .form-content {
        padding: 16px 12px;
    }
    .location-badge {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
    /* No font-size override - let clamp() handle it */
}

/* Ultra Small Mobile (very narrow screens) */
@media (max-width: 320px) {
    .subtitle {
        font-size: 0.9rem;
        padding: 0 12px;
    }
}

/* Lucide Icons Styling */
.lucide-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    vertical-align: middle;
    margin-right: 12px;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.lucide-icon-small {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 8px;
}

.lucide-icon-large {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
}

/* Special handling for centered cards */
.card-text[style*="justify-content: center"] .lucide-icon {
    margin-right: 10px;
}

/* Footer */
.footer {
    position: static;
    padding: 40px 0 20px;
    text-align: center;
}
.footer-btn {
    background: #1a1a1a;
    border: 1px solid #444444;
    border-radius: 4px;
    color: #888888;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 200;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.footer-btn:hover {
    background: #333333;
    border-color: #ff4040;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(255, 64, 64, 0.3);
}

/* Interactive elements */
.synergy-link {
    color: #ff6b6b;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 200;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
.synergy-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff6b6b, #ff5252);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}
.synergy-link:hover::after {
    width: 100%;
}
.synergy-link:hover {
    color: #ff5252;
}

.synergy-help {
    background: #333333;
    border: 1px solid #555555;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-weight: bold;
    animation: pulse-help 2s ease-in-out infinite;
    text-indent: 0px;
}
.synergy-help:hover {
    background: #ff4040;
    border-color: #ff6b6b;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 64, 64, 0.4);
    animation: none;
}

@keyframes pulse-help {
    0%, 70%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.4);
    }
    35% {
        transform: scale(1.05);
        box-shadow: 0 0 0 3px rgba(255, 64, 64, 0.2);
        border-color: #ff6b6b;
    }
}
.synergy-logo {
    transform: scale(0.5);
    transform-origin: center top;
    height: 256px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

/* Hearts container structure */
.hearts-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 10;
    pointer-events: none;
}

.left-heart-container,
.right-heart-container,
.left-dot-container,
.right-dot-container {
    position: absolute;
    width: 200px;
    height: 400px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-heart-container {
    top: 61px;
    left: 50%;
    margin-left: -26px; /* Half of 512px scaled by 0.5 = 256px, left heart starts at ~20px from center */
}

.right-heart-container {
    top: 61px;
    left: 50%;
    margin-left: 207px; /* Right heart starts at ~207px from center */
}

.left-dot-container {
    top: 61px;
    left: 50%;
    margin-left: -500px; /* Noch weiter nach links */
}

.right-dot-container {
    top: 61px;
    left: 50%;
    margin-left: 0px; /* Direkt in der Mitte */
}

/* Particle containers for each shape */
.left-particle-container,
.right-particle-container,
.left-dot-particle-container,
.right-dot-particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
}

/* Particle styles for hearts and dots */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
    animation: particleGlow 2s ease-in-out infinite alternate;
}

.left-particle {
    background: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.right-particle {
    background: #6366f1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

.left-dot-particle,
.right-dot-particle {
    background: #9ca3af;
    box-shadow: 0 0 6px rgba(156, 163, 175, 0.5);
    animation: particleGlow 3s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.left-particle-container,
.right-particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: visible;
}

/* Particle styles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff6b9d;
    box-shadow: 0 0 10px rgba(255, 107, 157, 1), 0 0 20px rgba(255, 107, 157, 0.6);
    pointer-events: none;
    animation: particleGlow 2s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
        box-shadow: 0 0 8px rgba(255, 107, 157, 0.8), 0 0 15px rgba(255, 107, 157, 0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(255, 107, 157, 1), 0 0 25px rgba(255, 107, 157, 0.8);
    }
}

/* Pulsierender Effekt für Herz-Pfade */
.left-heart {
    animation: heartbeat-left 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 107, 107, 0.3));
    transform-origin: center;
}

.right-heart {
    animation: heartbeat-right 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 107, 157, 0.3));
    transform-origin: center;
}

@keyframes heartbeat-left {
    0%, 50%, 100% {
        transform: translate(230px, 61px) scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 107, 107, 0.3));
    }
    25% {
        transform: translate(230px, 61px) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.6));
    }
}

@keyframes heartbeat-right {
    0%, 50%, 100% {
        transform: translate(463px, 61px) scale(1);
        filter: drop-shadow(0 0 3px rgba(102, 102, 255, 0.3));
    }
    25% {
        transform: translate(483px, 61px) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(102, 102, 255, 0.6));
    }
}

/* Mobile keyframes for 768px */
@keyframes heartbeat-left-mobile {
    0%, 50%, 100% {
        transform: translate(238px, 43px) scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 107, 107, 0.3));
    }
    25% {
        transform: translate(238px, 43px) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.6));
    }
}

@keyframes heartbeat-right-mobile {
    0%, 50%, 100% {
        transform: translate(401px, 43px) scale(1);
        filter: drop-shadow(0 0 3px rgba(102, 102, 255, 0.3));
    }
    25% {
        transform: translate(401px, 43px) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(102, 102, 255, 0.6));
    }
}

/* Mobile keyframes for 480px */
@keyframes heartbeat-left-small {
    0%, 50%, 100% {
        transform: translate(243px, 30px) scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 107, 107, 0.3));
    }
    25% {
        transform: translate(243px, 30px) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.6));
    }
}

@keyframes heartbeat-right-small {
    0%, 50%, 100% {
        transform: translate(360px, 30px) scale(1);
        filter: drop-shadow(0 0 3px rgba(102, 102, 255, 0.3));
    }
    25% {
        transform: translate(360px, 30px) scale(1.05);
        filter: drop-shadow(0 0 8px rgba(102, 102, 255, 0.6));
    }
}

svg#heart-svg,
svg#heart-svg-blur {
    overflow: visible;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    z-index: 5;
    width: 512px;
    height: 512px;
}
#heart-svg-blur {
    filter: blur(10px);
    transform: translateX(-50%) scale(1.0001);
}

.left-heart, .right-heart, .left-dot, .right-dot {
    display: none;
}

/* Symbol highlight class */
.symbol-highlight {
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    color: #e0e0e0;
}

.symbol-highlight:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 8px rgba(255, 255, 255, 0.05);
    transform: translateY(-0.5px);
}

/* Dezenter Text-Highlight für Aktionen */
.action-highlight {
    background: rgba(168, 85, 247, 0.02);
    padding: 1px 3px;
    border-radius: 3px;
    border: 1px solid rgba(168, 85, 247, 0.05);
    transition: all 0.2s ease;
    color: #c9a9ed;
}

.action-highlight:hover {
    background: rgba(168, 85, 247, 0.04);
    border-color: rgba(168, 85, 247, 0.1);
    color: #d4b3f0;
}

