body {
    scroll-behavior: smooth;
}

.dotted-background {
    /* background-color: #101010; */
    background-image: radial-gradient(circle, #1a1a1a 1px, transparent 1px);
    background-size: 15px 15px;
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-description {
    color: white;
}

/* Light mode service card hover colors */
.light .service-card:hover .service-icon,
.light .service-card:hover .service-title,
.light .service-card:hover .service-description {
    color: #111827 !important;
    /* color: rgba(0, 0, 0, 0.45); */
}

/* Professional Badges Styling */
.linkedin-badge-container {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Custom LinkedIn Card */
.linkedin-custom-card {
    background: linear-gradient(135deg, rgba(35, 36, 38, 0.9) 0%, rgba(42, 45, 48, 0.8) 100%);
    border: 1px solid rgba(195, 0, 45, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(195, 0, 45, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 260px;
}

.linkedin-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(195, 0, 45, 0.25);
    border-color: rgba(195, 0, 45, 0.5);
}

.linkedin-profile-link {
    text-decoration: none;
    color: white;
    display: block;
}

.linkedin-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-radius: 50%;
    padding: 12px;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.linkedin-icon svg {
    color: white;
}

.linkedin-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.linkedin-title {
    font-size: 14px;
    color: #f9004d;
    margin-bottom: 8px;
    font-weight: 500;
}

.linkedin-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Light theme adjustments for LinkedIn card */
.light .linkedin-custom-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.8) 100%);
    border: 1px solid rgba(195, 0, 45, 0.2);
    box-shadow: 0 8px 25px rgba(195, 0, 45, 0.1);
}

.light .linkedin-custom-card:hover {
    box-shadow: 0 15px 35px rgba(195, 0, 45, 0.2);
    border-color: rgba(195, 0, 45, 0.4);
}

.light .linkedin-profile-link {
    color: #1f2937;
}

.light .linkedin-name {
    color: #1f2937;
}

.light .linkedin-title {
    color: #c3002d;
}

.light .linkedin-location {
    color: rgba(31, 41, 55, 0.7);
}

.github-stats-container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* GitHub Stats Card Styling */
.github-dark-theme,
.github-light-theme {
    background: linear-gradient(135deg, rgba(35, 36, 38, 0.9) 0%, rgba(42, 45, 48, 0.8) 100%);
    border: 1px solid rgba(195, 0, 45, 0.3);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(195, 0, 45, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.github-dark-theme:hover,
.github-light-theme:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(195, 0, 45, 0.25);
    border-color: rgba(195, 0, 45, 0.5);
}

.github-stats-container img {
    transition: none;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Light theme adjustments for GitHub stats */
.light .github-dark-theme,
.light .github-light-theme {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.8) 100%);
    border: 1px solid rgba(195, 0, 45, 0.2);
    box-shadow: 0 8px 25px rgba(195, 0, 45, 0.1);
}

.light .github-dark-theme:hover,
.light .github-light-theme:hover {
    box-shadow: 0 15px 35px rgba(195, 0, 45, 0.2);
    border-color: rgba(195, 0, 45, 0.4);
}

/* Professional Profiles Section */
#profiles {
    background: linear-gradient(135deg, rgba(35, 36, 38, 0.8) 0%, rgba(42, 45, 48, 0.6) 100%);
    overflow-x: hidden;
}

#profiles .max-w-7xl {
    overflow-x: hidden;
}

#profiles h3 {
    transition: color 0.3s ease;
}

/* Light theme adjustments for profiles section */
.light #profiles {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(243, 244, 246, 0.6) 100%);
}

.light #profiles h2,
.light #profiles h3 {
    color: #1f2937 !important;
}

.light #profiles p {
    color: #6b7280 !important;
}

/* Responsive adjustments for professional badges */
@media (max-width: 1024px) {
    .linkedin-badge-container,
    .github-stats-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .linkedin-custom-card {
        max-width: 240px;
    }
    
    .github-dark-theme,
    .github-light-theme {
        max-width: 400px;
        padding: 14px;
    }
    
    .github-stats-container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    .linkedin-badge-container,
    .github-stats-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .linkedin-custom-card {
        max-width: 220px;
        padding: 16px;
    }
    
    .github-dark-theme,
    .github-light-theme {
        max-width: 300px;
        padding: 12px;
    }
    
    .linkedin-name {
        font-size: 16px;
    }
    
    .linkedin-title {
        font-size: 13px;
    }
    
    .linkedin-location {
        font-size: 11px;
    }
    
    .github-stats-container img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure no horizontal scroll */
body {
    overflow-x: hidden;
}

#profiles * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Extra copyright visibility fix */
footer p.footer-copyright {
    color: #9ca3af !important;
    font-size: 14px !important;
    margin: 16px 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1.5;
    text-align: center !important;
}

.light footer p.footer-copyright {
    color: #6b7280 !important;
}


/* Scroll Animation Base Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left Animation */
.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
}

.fade-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right Animation */
.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease-out;
}

.fade-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation for Children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-children.animate-in > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animate-in > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animate-in > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animate-in > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animate-in > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.animate-in > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.animate-in > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.animate-in > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children.animate-in > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-children.animate-in > *:nth-child(10) { transition-delay: 1.0s; }
.stagger-children.animate-in > *:nth-child(11) { transition-delay: 1.1s; }
.stagger-children.animate-in > *:nth-child(12) { transition-delay: 1.2s; }

.stagger-children.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-soft {
    animation: pulse-soft 2s ease-in-out infinite;
}

/* Slide In Animations */
.slide-in-from-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.slide-in-from-bottom.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-from-top {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1s ease-out;
}

.slide-in-from-top.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Rotate In Animation */
.rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rotate-in.animate-in {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Bounce In Animation */
.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Stagger with different delays */
.stagger-slow > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.stagger-slow.animate-in > *:nth-child(1) { transition-delay: 0.2s; }
.stagger-slow.animate-in > *:nth-child(2) { transition-delay: 0.4s; }
.stagger-slow.animate-in > *:nth-child(3) { transition-delay: 0.6s; }
.stagger-slow.animate-in > *:nth-child(4) { transition-delay: 0.8s; }
.stagger-slow.animate-in > *:nth-child(5) { transition-delay: 1.0s; }

.stagger-slow.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Wave Effect */
@keyframes wave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.wave-animation {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

.wave-animation:nth-child(1) { animation-delay: 0s; }
.wave-animation:nth-child(2) { animation-delay: 0.1s; }
.wave-animation:nth-child(3) { animation-delay: 0.2s; }
.wave-animation:nth-child(4) { animation-delay: 0.3s; }
.wave-animation:nth-child(5) { animation-delay: 0.4s; }

/* Gradient Text Animation */
@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: linear-gradient(-45deg, #f9004d, #ff6b6b, #f9004d, #ff1744);
    background-size: 400% 400%;
    animation: gradient-text 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typewriter Effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #f9004d; }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #f9004d;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Section Title Reveal Animation */
.section-title-reveal {
    position: relative;
    overflow: hidden;
}

.section-title-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #232426;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.section-title-reveal.animate-in::before {
    transform: translateX(100%);
}

/* Progressive Load Animation */
.progressive-load {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progressive-load.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Services Carousel Styles */
.carousel-indicator {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.carousel-indicator:hover {
    transform: scale(1.2);
}

.carousel-indicator.active {
    background-color: #c3002d !important;
    transform: scale(1.2);
}

/* Carousel Navigation Buttons */
#prevBtn, #nextBtn {
    background: rgba(195, 0, 45, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(195, 0, 45, 0.3);
}

#prevBtn:hover, #nextBtn:hover {
    background: rgba(195, 0, 45, 1);
    box-shadow: 0 10px 30px rgba(195, 0, 45, 0.3);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    #prevBtn, #nextBtn {
        padding: 8px;
        width: 40px;
        height: 40px;
    }
    
    #prevBtn svg, #nextBtn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
    }
}

/* Smooth carousel transitions */
#servicesTrack {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service cards hover animation in carousel */
.service-card {
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(195, 0, 45, 0.15);
}

/* Light Theme Styles */
.light .dotted-background {
    background-color: #f8fafc;
    background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
    background-size: 15px 15px;
}

.light .service-card {
    background-color: white;
    border: 1px solid #e2e8f0;
}

.light .service-card:hover {
    background-color: #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.light header {
    background-color: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
}

.light nav a {
    color: #374151 !important;
}

.light nav a:hover {
    color: #c3002d !important;
}

.light h1, .light h2, .light h3, .light h4, .light h5, .light h6 {
    color: #111827 !important;
}

.light p, .light span {
    color: #374151 !important;
}

.light .bg-gray-800 {
    background-color: #f3f4f6 !important;
}

.light .text-gray-300 {
    color: #374151 !important;
}

.light .text-gray-400 {
    color: #374151 !important;
}

.light .border-gray-700 {
    border-color: #d1d5db !important;
}

.light footer {
    background-color: #f9fafb !important;
    border-top: 1px solid #e5e7eb;
}

/* Footer Styles */
.footer-link {
    color: #9ca3af;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #f9004d;
}

.footer-copyright {
    color: #9ca3af !important;
    font-size: 14px !important;
    font-weight: 400;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Light theme footer adjustments */
.light footer {
    background-color: #f9fafb !important;
    border-top: 1px solid #e5e7eb;
}

.light footer h3 {
    color: #1f2937 !important;
}

.light .footer-link {
    color: #6b7280 !important;
}

.light .footer-link:hover {
    color: #c3002d !important;
}

.light .footer-copyright {
    color: #6b7280 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.light footer .border-gray-600 {
    border-color: #d1d5db !important;
}

.light #theme-toggle:hover {
    background-color: #f3f4f6 !important;
    color: #c3002d !important;
}

/* Service Pages Styles */
.light .service-page .bg-brand-lightdark {
    background-color: #f8fafc !important;
    border-color: #e2e8f0 !important;
}

.light .service-page .text-gray-400 {
    color: #374151 !important;
}

.light .service-page .text-white {
    color: #111827 !important;
}

.light .service-page .border-gray-700 {
    border-color: #e2e8f0 !important;
}

.light .service-page .bg-gradient-to-r {
    background: linear-gradient(to right, rgba(195, 0, 45, 0.05), rgba(195, 0, 45, 0.02)) !important;
}

.light .service-page .border-brand-red\/20 {
    border-color: rgba(195, 0, 45, 0.2) !important;
}

.light .service-page .bg-brand-red\/10 {
    /* background-color: rgba(195, 0, 45, 0.1) !important; */
    background-color: rgb(195 0 45) !important;
}

.light .service-page .dotted-background {
    background-color: #f8fafc !important;
    background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px) !important;
}

/* Logo Styles for Light Mode */
.logo-container {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.light .logo-container {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.12), rgba(148, 163, 184, 0.9));
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(100, 116, 139, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.light .logo-container:hover {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.18), rgba(148, 163, 184, 0.12));
    box-shadow: 
        0 6px 16px rgba(100, 116, 139, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Dark mode logo - subtle enhancement */
.dark .logo-container:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(195, 0, 45, 0.2);
    transform: translateY(-1px);
}

/* Portfolio Image Shadow Effects */
.shadow-portfolio {
    /* Alakot követő árnyék a drop-shadow filterrel */
    filter: 
        drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3))
        drop-shadow(0 5px 15px rgba(195, 0, 45, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.shadow-portfolio:hover {
    transform: translateY(-5px);
    filter: 
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4))
        drop-shadow(0 10px 25px rgba(195, 0, 45, 0.15));
}

/* Light theme portfolio shadow */
.light .shadow-portfolio {
    filter: 
        drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1))
        drop-shadow(0 5px 15px rgba(195, 0, 45, 0.08));
}

.light .shadow-portfolio:hover {
    filter: 
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15))
        drop-shadow(0 10px 25px rgba(195, 0, 45, 0.12));
}

/* Hero Section Counter Colors for Light Mode */
.light .counter {
    color: #111827 !important;
}

.light .text-white {
    color: #111827 !important;
}

.light .text-gray-400 {
    color: #374151 !important;
}

.light .text-gray-300 {
    color: #374151 !important;
}

/* Skills Section Light Mode Styles */
.light #skills .bg-brand-lightdark {
    background-color: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
}

.light #skills .bg-brand-lightdark:hover {
    background-color: #e2e8f0 !important;
}

.light #skills .text-white {
    color: #111827 !important;
}

.light #skills h2.text-white {
    color: #111827 !important;
}

.light #skills .text-gray-400 {
    color: #374151 !important;
}

/* Contact Section Light Mode Styles */
.light #contact.bg-brand-lightdark {
    background-color: #f1f5f9  !important;
}

.light #contact .text-white {
    color: #111827 !important;
}

.light #contact .bg-gray-800 {
    background-color: #ffffff !important;
    border-color: #e5e7eb !important;
    color: #111827 !important;
}

.light #contact .placeholder-gray-400::placeholder {
    color: #9ca3af !important;
}

.light #contact .text-white {
    color: #111827 !important;
}

.light #contact .border-gray-700 {
    border-color: #e5e7eb !important;
}

.light #contact .focus\:border-blue-500:focus {
    border-color: #3b82f6 !important;
}

.light #contact .group:hover .group-hover\:border-gray-600 {
    border-color: #d1d5db !important;
}

.light #contact button.bg-gray-800 {
    background-color: #c3002d !important;
}

.light #contact button.bg-gray-800:hover {
    background-color: #a30025 !important;
}

/* Download CV Button Hover Style */
nav a[href="/cv.pdf"]:hover {
    color: #ebe0e3 !important;
}

/* Brand Red Background Text Styling */
.bg-brand-red\/10 .text-gray-300,
.bg-brand-red\/10 p {
    color: #e5e7eb !important;
}

.bg-brand-red\/10 .text-gray-400 {
    color: #d1d5db !important;
}

/* Light mode adjustments for brand red backgrounds */
.light .bg-brand-red\/10 .text-gray-300,
.light .bg-brand-red\/10 p {
    color: #f3f4f6 !important;
}

.light .bg-brand-red\/10 .text-gray-400 {
    color: #e5e7eb !important;
}

/* Portfolio hover overlay text should remain white in light mode */
.light #portfolio .group .absolute .text-white {
    color: white !important;
}

/* Portfolio hover overlay text should remain white in light mode */
.light #portfolio .group .absolute .text-brand-red {
    color: #c3002d !important;
}

/* Hero Profile Image Background Effects */
.bg-gradient-radial {
    background: radial-gradient(circle, var(--tw-gradient-stops));
}

/* Subtle halo gradient (behind ring) */
.hero-halo {
    background: radial-gradient(circle, rgba(195, 0, 45, 0.2) 0%, rgba(195, 0, 45, 0.1) 40%, transparent 70%);
    aspect-ratio: 1 / 1; /* Force perfect circle */
}

/* Perfect circle ring */
.hero-ring {
    aspect-ratio: 1 / 1; /* Force perfect circle */
}

/* Hero profile decorative animations */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

.animate-float-gentle {
    animation: float-gentle 6s ease-in-out infinite;
}

/* Staggered bounce animation for chevrons */
.animate-bounce-delayed {
    animation: bounce 2s infinite;
    animation-delay: 0.5s;
}

/* Light mode adjustments for hero halo effect */
.light .hero-halo {
    background: radial-gradient(circle, rgba(195, 0, 45, 0.15) 0%, rgba(195, 0, 45, 0.08) 40%, transparent 70%);
}

.light .border-brand-red\/30 {
    border-color: rgba(195, 0, 45, 0.4) !important;
}

