﻿:root {
    --yt-red: #ff0033;
    --yt-red-dark: #d9002c;
    --ink: #101316;
}

.font-display {
    font-family: 'Outfit', sans-serif;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 51, 0.08);
    color: var(--yt-red);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

.card-shadow {
    box-shadow: 0 24px 60px rgba(13, 15, 18, 0.12);
}

[class*="text-[#05C069]"] {
    color: var(--yt-red) !important;
}

[class*="bg-[#05C069]"] {
    background-color: var(--yt-red) !important;
    color: #fff !important;
}

[class*="text-[#152228]"] {
    color: var(--ink) !important;
}

[class*="bg-[#152228]"] {
    background-color: var(--ink) !important;
}

.text-emerald-300 {
    color: rgba(255, 0, 51, 0.6) !important;
}

.text-emerald-100 {
    color: rgba(255, 0, 51, 0.35) !important;
}

.bg-emerald-100 {
    background-color: rgba(255, 0, 51, 0.12) !important;
}

input,
select,
textarea {
    border: 1px solid #e6eaed;
    border-radius: 12px;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid rgba(255, 0, 51, 0.35);
    outline-offset: 2px;
}

.fmt-btn {
    padding: 4px 8px;
    border: 1px solid #e6eaed;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.fmt-btn:hover {
    background: #f4f6f7;
}

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

.animate-rise {
    opacity: 0;
    animation: rise 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.24s;
}

@media (max-width: 1100px) {
    .w-\[68vw\] {
        width: 92vw !important;
    }
}
