/* Intro Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-words {
    position: absolute;
    text-align: center;
}

.intro-word {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: wordFadeIn 1.2s ease forwards;
    margin-bottom: 1rem;
}

.intro-word[data-delay="0"] {
    animation-delay: 0.3s;
}

.intro-word[data-delay="1"] {
    animation-delay: 1.2s;
}

.intro-word[data-delay="2"] {
    animation-delay: 2.1s;
}

.intro-word[data-delay="3"] {
    animation-delay: 3s;
    animation-duration: 1.8s;
    font-size: 2.5rem;
    color: var(--text-primary);
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
}

.intro-logo {
    opacity: 0;
    transform: scale(0.3);
    animation: logoAppear 1.5s ease forwards;
    animation-delay: 4.2s;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.intro-logo-img {
    width: 400px;
    max-width: 80vw;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.6));
}

@media (max-width: 768px) {
    .intro-word {
        font-size: 2rem;
    }

    .intro-word[data-delay="3"] {
        font-size: 1.8rem;
    }

    .intro-logo-img {
        width: 300px;
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-color: #c41e3a;
    --accent-hover: #a01629;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#navbar.scrolled .logo {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    transform: translateY(-100px);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-logo {
    max-width: 90%;
    width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;

}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    margin-top: 3rem;
    background: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

.cta-button:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 5px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

/* Termine Section */
.termine-section {
    background: var(--secondary-bg);
}

.termine-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.loading-message,
.no-termine,
.error-message {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.error-message {
    color: var(--accent-color);
}

.termin-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.termin-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.termin-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    padding: 1rem 1.5rem;
    min-width: 100px;
}

.termin-date .day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.termin-date .month {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.termin-info {
    flex: 1;
}

.termin-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.termin-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.termin-time {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.ticket-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 25px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

/* Band Section */
.band-section {
    background: var(--primary-bg);
}

.band-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    margin-bottom: 4rem;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.band-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    will-change: transform;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.band-hero:hover .band-hero-image {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.15);
}

.band-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.band-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Band Gallery */
.band-gallery {
    margin: 0 auto 4rem;
    max-width: 1000px;
}

.gallery-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(196, 30, 58, 0.8);
}

.gallery-overlay span {
    font-size: 3rem;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    font-size: 3rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

.band-members {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.member-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.member-card:hover .member-image {
    border-color: var(--accent-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.member-card:hover .member-image img {
    filter: grayscale(0%);
}

.member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Kontakt Section */
.kontakt-section {
    background: var(--secondary-bg);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "info form"
        "social form";
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.kontakt-info {
    grid-area: info;
}

.kontakt-form-wrapper {
    grid-area: form;
}

.social-links {
    grid-area: social;
    display: flex;
    gap: 1rem;
    margin-top: 0;
    align-self: start;
}

.kontakt-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.kontakt-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.kontakt-details {
    margin-bottom: 2rem;
}

.kontakt-item {
    margin-bottom: 1rem;
}

.kontakt-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.kontakt-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt-item a:hover {
    color: var(--accent-hover);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Contact Form */
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--primary-bg);
    padding: 0 5px;
}

.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: 10px;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.submit-button {
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: transparent;
    color: var(--accent-color);
}

.form-message {
    margin-top: 1rem;
    padding: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 125, 50, 0.2);
    border: 1px solid #2e7d32;
    color: #4caf50;
}

.form-message.error {
    display: block;
    background: rgba(211, 47, 47, 0.2);
    border: 1px solid #d32f2f;
    color: #f44336;
}

/* Impressum Section */
.impressum-section {
    background: var(--primary-bg);
}

/* Veranstalter Section */
.veranstalter-section {
    background: var(--primary-bg);
    padding: 80px 0 60px 0;
}

.veranstalter-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.download-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.download-icon svg {
    width: 50px;
    height: 50px;
}

.download-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.download-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    padding: 8px 20px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-primary);
}

.veranstalter-info {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-bg);
    border-left: 3px solid var(--accent-color);
}

.veranstalter-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.veranstalter-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.veranstalter-info a:hover {
    color: var(--accent-hover);
}

/* Impressum Section */
.impressum-section {
    background: var(--primary-bg);
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.impressum-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-primary);
}

.impressum-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        letter-spacing: 5px;
    }

    .hero-logo {
        width: 90%;
        max-width: 400px;
    }

    .hero-section {
        height: 100vh;
        min-height: 600px;
    }

    .hero-image {
        object-position: center center;
    }

    .section {
        padding: 60px 0;
    }

    .termin-card {
        flex-direction: column;
        text-align: center;
    }

    .termin-date {
        margin: 0 auto;
    }

    .band-hero {
        height: 400px;
    }

    .band-members {
        grid-template-columns: repeat(3, 1fr);
    }

    .member-card:nth-child(4),
    .member-card:nth-child(5) {
        grid-column: span 1;
    }

    .member-card:nth-child(4) {
        margin-left: 25%;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "info"
            "form"
            "social";
        gap: 3rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 45px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .hero-logo {
        width: 95%;
        max-width: 400px;
    }

    .band-members {
        grid-template-columns: 1fr;
    }

    .member-card:nth-child(4) {
        margin-left: 0;
    }

    .social-links {
        flex-direction: column;
    }
}

/* Form Modal */
.form-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.form-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-modal-content {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #0f0f0f 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 50px rgba(196, 30, 58, 0.3);
    border: 1px solid rgba(196, 30, 58, 0.3);
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.form-modal-close:hover {
    color: var(--accent-color);
}

.form-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.form-modal-icon.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-modal-icon.success::before {
    content: '✓';
}

.form-modal-icon.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.form-modal-icon.error::before {
    content: '✕';
}

.form-modal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.form-modal-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-ok-button {
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-ok-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.modal-ok-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-modal-content {
        padding: 2rem 1.5rem;
    }

    .form-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .form-modal-content h3 {
        font-size: 1.5rem;
    }

    .form-modal-content p {
        font-size: 1rem;
    }
}