:root {
    --primary-color: #0A6BD5;
    --text-primary: #333;
    --text-secondary: #666;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    width: 100%;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 10000;
    max-width: 95%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.modal-close svg {
    color: #333;
}

.modal-poster {
    max-width: 600px;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.modal-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: #D9BAC3;
    color: #3F5F57;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.modal-cta-button:hover {
    background: #c9a5af;
}

@media (max-width: 600px) {
    .modal-poster {
        max-width: 320px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

.scrolling-header {
    width: 100%;
    background: #8A7F6A;
    overflow: hidden;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    text-decoration: none;
    display: block;
}

.scrolling-header:hover .scrolling-text span {
    text-decoration: underline;
}

.scrolling-text {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 0s linear infinite;
    will-change: transform;
}

.scrolling-text span {
    color: white;
    font-style: italic;
    font-size: 24px;
    font-weight: 450;
    padding: 0;
    display: inline-block;
}

.scrolling-text span:first-child {
    padding-right: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes posterPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.poster-banner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    z-index: 100;
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
    animation-delay: 0.3s;
}

.poster-banner a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-banner img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: posterPulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

.poster-banner a:hover {
    transform: scale(1.05);
}

.poster-banner a:hover img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.poster-banner-left {
    left: 30px;
}

.poster-banner-right {
    right: 30px;
}

/* Mobile poster below content */
.poster-banner-mobile {
    position: relative;
    width: 100%;
    max-width: 220px;
    margin: 10px auto;
    padding: 0 20px;
    display: none !important;
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
    animation-delay: 0.3s;
    transform: none;
}

.poster-banner-mobile a {
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-banner-mobile img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: posterPulse 4s ease-in-out infinite;
    animation-delay: 2s;
}

.poster-banner-mobile a:hover {
    transform: scale(1.05);
}

.poster-banner-mobile a:hover img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1099px) {
    .poster-banner-mobile {
        display: block !important;
    }
}

@media (min-width: 1100px) {
    .poster-banner-left,
    .poster-banner-right {
        display: block;
        width: 220px;
    }
}

@media (min-width: 1300px) {
    .poster-banner-left,
    .poster-banner-right {
        width: 280px;
    }
}

@media (min-width: 1500px) {
    .poster-banner-left,
    .poster-banner-right {
        width: 320px;
    }
    
    .poster-banner-left {
        left: 40px;
    }
    
    .poster-banner-right {
        right: 40px;
    }
}

.container {
    text-align: center;
    background: #ffffff;
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    max-width: 600px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-10px);
}

.logo a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.logo img {
    width: clamp(180px, 25vw, 250px);
    height: clamp(180px, 25vw, 250px);
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.logo img:hover {
    transform: scale(1.05);
}

.title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.social-media {
    margin-top: clamp(-3rem, -5vw, -2rem);
    width: 100%;
    max-width: 400px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(64px, 10vw, 80px);
    height: clamp(64px, 10vw, 80px);
    background: var(--primary-color);
    border: none;
    border-radius: clamp(16px, 3vw, 20px);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon svg {
    width: clamp(32px, 5vw, 40px);
    height: clamp(32px, 5vw, 40px);
    fill: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
}

.social-icon[id="tiktokLink"] svg {
    transform: translateX(-2px);
}

.gofundme-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.2rem, 3vw, 1.5rem);
    background: #02A95C;
    color: white;
    text-decoration: none;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    border: 2px solid #02A95C;
    border-radius: clamp(8px, 2vw, 10px);
    transition: all 0.2s ease;
}

.gofundme-button:hover {
    background: transparent;
    color: #02A95C; 
}

.gofundme-button svg {
    width: 18px;
    height: 18px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    /* margin-top: clamp(1rem, 2vw, 1.2rem); */
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.2rem, 3vw, 1.5rem);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
    border: 2px solid var(--primary-color);
    border-radius: clamp(8px, 2vw, 10px);
    transition: all 0.2s ease;
}

.contact-button:hover {
    background: var(--primary-color);
    color: white;
}

.contact-button svg {
    width: 16px;
    height: 16px;
}

.footer {
    margin-top: auto;
    width: 100%;
    background: transparent;
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    flex-shrink: 0;
}

.footer-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.school-button-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 400;
    transition: color 0.2s ease;
    border-radius: 6px;
}

.school-button-footer:hover {
    color: #0A6BD5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-separator {
    color: #ccc;
}

.impressum-link {
    display: inline-flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 400;
    transition: color 0.2s ease;
    border-radius: 6px;
}

.impressum-link:hover {
    color: #0A6BD5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (pointer: coarse) {
    .school-button-footer,
    .impressum-link {
        min-height: 44px;
        padding: 0.35rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-separator {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Impressum & Contact Page Styles */
.impressum-container {
    max-width: 800px;
    width: clamp(85%, 90%, 90%);
    text-align: left;
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
}

.impressum-container .title {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.impressum-container .logo {
    text-align: center;
}

.impressum-content {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    line-height: 1.6;
}

.impressum-content h2 {
    color: #333;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    font-weight: 600;
}

.impressum-content h3 {
    color: #444;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
    font-weight: 500;
}

.impressum-content p {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
}

.impressum-content strong {
    color: #333;
}

.impressum-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

.impressum-section:first-of-type {
    padding-top: 0;
}

.impressum-section h2 {
    color: #333;
    font-size: clamp(1.15rem, 3vw, 1.3rem);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    font-weight: 600;
}

.impressum-section p {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.impressum-section p:last-child {
    margin-bottom: 0;
}

.impressum-email {
    color: var(--primary-color);
    font-weight: 500;
}

.impressum-form {
    background: transparent;
    margin-top: clamp(0.75rem, 2vw, 1rem);
}

/* Contact Page Styles */
.contact-container {
    max-width: 700px;
    text-align: center;
}

.contact-content {
    width: 100%;
    max-width: 600px;
}

.contact-intro {
    color: #666;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: clamp(2.5rem, 5vw, 3rem);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 1.5rem);
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
}

.contact-card:hover {
    border-color: var(--primary-color);
    /* transform: translateY(-2px); */
    /* box-shadow: 0 4px 12px rgba(10, 107, 213, 0.1); */
}

.contact-card svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.contact-card-content p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

.contact-form-section {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-form-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #333;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
}

.contact-form-clean {
    background: transparent;
    text-align: left;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0rem 1.5rem 1.5rem 1.5rem;
    margin-top: 1rem;
    border: 1px solid #e9ecef;
}

.contact-form h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 107, 213, 0.1);
}

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

.form-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: clamp(0.85rem, 2vw, 1rem) 1.5rem;
    border-radius: 10px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    margin-top: 0.5rem;
}

.form-submit:hover:not(:disabled) {
    background: #0856b3;
    transform: translateY(-1px);
}

.form-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-loading {
    opacity: 0.8;
    position: relative;
}

.submit-loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    bottom: 0;
    right: 10px;
}

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

/* Field validation styles */
.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Page Specific Styles */
.cooperation-info {
    background: #e8f4f8;
    border-left: 4px solid #0A6BD5;
    padding: 0.2rem 1.5rem 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.cooperation-options {
    background: #f8f9fa;
    padding: 0.2rem 1.5rem 1.2rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.cooperation-options ul {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0 0;
}

.cooperation-options li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cooperation-options li:last-child {
    border-bottom: none;
}

.cooperation-options li:before {
    content: "→";
    color: #0A6BD5;
    font-weight: bold;
    flex-shrink: 0;
}

.social-links {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 0.2rem 1.5rem 1.2rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.social-links a {
    color: #0A6BD5;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

.response-time {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 0.2rem 1.5rem 1.2rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.response-time p {
    margin: 0;
}

/* Additional form styles for contact page */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Email Links Styling */
.email-contacts {
    margin: 1rem 0 1.5rem 0;
}

.email-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #0A6BD5;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.email-link:hover {
    /* background: #e9ecef; */
    border-color: #0A6BD5;
    /* box-shadow: 0 2px 8px rgba(10, 107, 213, 0.1);
    transform: translateY(-1px); */
}

.email-link svg {
    flex-shrink: 0;
}

.back-link {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 2.5rem);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-button:hover {
    color: var(--primary-color);
}

.back-button svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.school-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
}

.school-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.arrow-back {
    transform: rotate(180deg);
}

.contact-note {
    text-align: center;
    color: #999;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

/* Success Page Styles */
.success-container {
    max-width: 500px;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
}

.buttons {
    margin-top: clamp(1.25rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
}

.success-content {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.success-icon {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-check {
    color: #10b981;
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
}

.success-message {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 0;
    color: #374151;
}

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

.web3forms-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.scrolling-text--static {
    display: block;
    text-align: center;
    white-space: normal;
    padding: 0 0.75rem;
    font-style: italic;
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.4;
    color: #fff;
}

.modal-dismiss-today {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #555;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

.modal-dismiss-today:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

@media (prefers-reduced-motion: reduce) {
    .modal-content {
        animation: none;
    }

    .scrolling-text {
        animation: none !important;
    }

    .poster-banner,
    .poster-banner-mobile {
        animation: none !important;
    }

    .poster-banner img,
    .poster-banner-mobile img {
        animation: none !important;
    }

    .back-button:hover svg {
        transform: none;
    }
}

html.reduce-motion .poster-banner img,
html.reduce-motion .poster-banner-mobile img {
    animation: none !important;
}

html.reduce-motion .social-icon {
    opacity: 1 !important;
    transform: none !important;
}
