/* CSS Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: #3b82f6;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 8rem 0 4rem;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-container {
    position: relative;
    z-index: 2;
}

.profile-image {
    width: 350px;
    height: 450px;
    border-radius: 2rem;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation-delay: -2s;
}

.floating-icon:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.quote-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
}

.quote-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-card cite {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Preview Section */
.preview-section {
    padding: 6rem 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.preview-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.preview-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #1d4ed8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-left p {
    color: #94a3b8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .profile-image {
        width: 280px;
        height: 280px;
    }
}

/* KORRIGIERTES MOBILE MENÜ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; /* Header-Höhe */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px); /* Volle Höhe minus Header */
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start; /* Wichtig: flex-start statt center */
        align-items: center;
        padding: 2rem 0; /* Padding oben und unten */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto; /* WICHTIG: Scrollbar hinzufügen */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling auf iOS */
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1.5rem 0; /* Mehr Abstand zwischen den Elementen */
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 1.5rem 2rem; /* Grössere Klickfläche */
        display: block;
        width: 100%;
        color: #1e293b;
        font-weight: 600;
        border-radius: 0.5rem;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.nav-active {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    }

    .nav-links a::after {
        display: none; /* Entfernt den Unterstrich-Effekt im mobilen Menü */
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001; /* Höher als das Menü */
        position: relative;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: #1e293b;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Animationen für den Hamburger-Button */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #3b82f6;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: #3b82f6;
    }

    /* Verhindert Scrollen der Hauptseite wenn Menü offen ist */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Andere mobile Stile */
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .quote-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Verbesserte Darstellung auf sehr kleinen Bildschirmen */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .preview-card {
        padding: 2rem;
    }

    .nav-links {
        padding: 1rem 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
}

/* Sicherstellt, dass das Menü auch auf grossen Telefonen funktioniert */
@media (max-width: 768px) and (min-height: 800px) {
    .nav-links {
        justify-content: center; /* Zentriert die Links vertikal wenn genug Platz */
    }
}

/* Focus-Styles für Barrierefreiheit */
.mobile-menu-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-links a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles here */
}

/* ===================== */
/* Referenzen – Styles   */
/* ===================== */

.references-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.references-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.references-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

.references-section {
    padding: 6rem 0;
    background: white;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    background: #eef2f7;
    transform: translateY(-1px);
}

.chip.active {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reference-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
}

.ref-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    color: #1e293b;
    font-weight: 700;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.ref-ident {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ref-name {
    font-weight: 700;
    color: #1e293b;
}

.ref-role {
    font-size: 0.9rem;
    color: #64748b;
}

.ref-role a {
    color: #3b82f6;
    text-decoration: none;
}

.ref-role a:hover {
    text-decoration: underline;
}

.ref-rating {
    display: inline-flex;
    gap: 2px;
    margin-left: auto;
}

.star {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.ref-text {
    color: #334155;
    line-height: 1.6;
    margin: 0.75rem 0 0.5rem;
}

.ref-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.5rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
}

.ref-date {
    font-size: 0.85rem;
    color: #64748b;
}

.ref-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
    font-size: 0.8rem;
}

.empty-state {
    text-align: center;
    color: #64748b;
    padding: 2rem 1rem;
    border: 1px dashed #e2e8f0;
    border-radius: 1rem;
    background: #f8fafc;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .references-hero h1 {
        font-size: 2.5rem;
    }
}

/* =============================== */
/* Referenzen – PDF Button Styles  */
/* =============================== */
.ref-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.ref-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, .25);
    transition: transform .15s ease, box-shadow .15s ease;
}

.ref-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(59, 130, 246, .35);
}

/* =============================== */
/* Gemeinsame PDF/Modal-Styles     */
/* =============================== */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.pdf-modal-content {
    position: relative;
    background: #1e293b;
    margin: 2% auto;
    padding: 2rem;
    width: 90%;
    height: 90vh;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #334155;
}

.pdf-title {
    color: #60a5fa;
    font-size: 1.5rem;
    font-weight: 600;
}

.pdf-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.pdf-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.pdf-container {
    width: 100%;
    height: calc(100% - 120px);
    background: #334155;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

#pdf-canvas-container {
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #475569;
    padding: 1rem;
}

#pdf-canvas {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    background: white;
}

.pdf-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #1e293b;
    border-top: 1px solid #334155;
}

.pdf-controls button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-controls button:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.pdf-controls button:disabled {
    background: #64748b;
    cursor: not-allowed;
    transform: none;
}

#page-info {
    color: #94a3b8;
    font-weight: 500;
}

.pdf-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #94a3b8;
}

.pdf-loader::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin: 1rem auto;
    border: 4px solid #334155;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Security Modal */
.security-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.security-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.security-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1rem;
}

.security-message {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.security-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.security-ok {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.security-ok:hover {
    background: #dc2626;
}

.security-cancel {
    background: #94a3b8;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.security-cancel:hover {
    background: #64748b;
}