:root {
    --color-primary: #1D4ED8;
    --color-accent: #3B82F6;
    --color-dark-bg: #111827;
    --color-card-bg: #1F2937;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-dark-bg);
    color: #E5E7EB;
    overflow-x: hidden;
}

.glow-effect {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.7), 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero-bg-gradient {
    background: radial-gradient(circle at 50% 10%, #1D4ED81A, transparent 80%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blur-teaser {
    filter: blur(8px);
    pointer-events: none;
    transition: filter 0.5s;
}

.animated-skeleton {
    background: linear-gradient(90deg, #1F2937 0%, #374151 50%, #1F2937 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Ticker Animation */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll-mock {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
    gap: 1rem;
}

.animate-scroll-mock:hover {
    animation-play-state: paused;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background-color: #1F2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}