.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

table td, table th { vertical-align: middle; }

input[type="range"] {
    -webkit-appearance: none;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #4338ca;
    border-radius: 50%;
    cursor: pointer;
}

.tox-tinymce {
    border-radius: 0.5rem !important;
    border: 1px solid #e2e8f0 !important;
}

.hero-animate { animation: heroFadeUp 1s ease-out forwards; opacity: 0; transform: translateY(30px); }
.hero-animate-delay { animation: heroFadeUp 1s ease-out 0.3s forwards; opacity: 0; transform: translateY(30px); }
.hero-animate-delay-2 { animation: heroFadeUp 1s ease-out 0.6s forwards; opacity: 0; transform: translateY(30px); }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-shimmer {
    background: linear-gradient(90deg, #fff 0%, #c7d2fe 25%, #a5b4fc 50%, #c7d2fe 75%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s ease-in-out infinite;
    text-shadow: none;
}
@keyframes shimmerText {
    0%, 100% { background-position: 200% center; }
    50% { background-position: -200% center; }
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(165,180,252,0.4) 60%, transparent 100%);
    pointer-events: none;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0.3); opacity: 0; }
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounceArrow 2s ease-in-out infinite;
    cursor: pointer;
}
.hero-scroll-arrow svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 1; }
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: rgba(255,255,255,0.9);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blinkCursor 0.8s step-end infinite;
}
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #4f46e5;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background 0.2s, transform 0.2s;
}
.cta-button:hover { background: #4338ca; transform: translateY(-2px); }

.cta-button-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
}
.cta-button-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.fixed.inset-0.z-50.bg-black\/50 { animation: fadeIn 0.15s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.description-text strong { font-weight: 700; color: #0f172a; }

@media print {
    body { font-family: Arial, Helvetica, sans-serif; font-size: 9pt; color: #000; }
    header, footer, .no-print, .no-print * { display: none !important; }
    main { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
}
