/* hero-style.css - YouTube Background Video aligned with Ripple Container */
/* MODIFIED: YouTube video now matches ripple container dimensions */

/* ===== YOUTUBE BACKGROUND VIDEO CONTAINER - FIXED TO HERO ===== */
.youtube-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    overflow: hidden !important;
    background: #1a3c34 !important;
}

.youtube-iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    border: none !important;
}

/* Overlay for better text visibility */
.youtube-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ===== FIX FOR HERO SECTION LAYOUT ===== */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible; /* Changed from hidden to visible */
    z-index: 0;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: visible; /* Changed from hidden to visible */
}

/* Ensure the iframe covers entire container */
#youtubePlayer {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    border: none !important;
}

/* Video placeholder should also match ripple container */
.video-placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    background: #1a3c34 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.video-placeholder img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.8;
    filter: brightness(0.9);
}

/* ===== RIPPLE EFFECT CONTAINER - FIXED TO HERO ===== */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible; /* Changed from hidden to visible */
    z-index: 2;
    pointer-events: auto;
}

/* ===== HERO HEADER SPACER - FOR FIXED HEADER ===== */
.hero-header-spacer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: transparent;
    z-index: 5;
    pointer-events: none;
}

/* ===== HERO CONTENT ADJUSTMENTS ===== */
.hero-content {
    position: absolute;
    bottom: 50%;
    left: 15%;
    text-align: left;
    z-index: 3;
    width: 80%;
    max-width: 1000px;
    padding: 20px;
    pointer-events: none;
    transform: translateY(50%);
}

.hero-content * {
    pointer-events: auto;
}

/* ===== HERO TITLE WITH GEORGIA FONT ===== */
.hero-title {
    font-family: Georgia, 'Times New Roman', Times, serif !important;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* WELCOME TO TEXT - First line */
.hero-welcome-text {
    font-family: Georgia, 'Times New Roman', Times, serif !important;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
}

/* KCIC TEXT CONTAINER - Second line */
.kcic-text-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: 0;
}

/* INDIVIDUAL WORDS - Smaller size */
.hero-title-words {
    font-family: Georgia, 'Times New Roman', Times, serif !important;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    position: relative;
    margin-right: 4px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* KCIC acronym styling */
.kcic-acronym {
    font-size: 1.6rem;
    color: #4F8F84;
    font-weight: 600;
    margin-left: 3px;
}

/* ===== VIDEO CONTROLS ===== */
.video-controls {
    position: absolute;
    bottom: 20%;
    right: 20px;
    z-index: 3;
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

/* ===== VIDEO CONTROLS GROUP ===== */
.video-controls-group {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Control button base styles */
.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.control-btn:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.control-btn:active {
    transform: translateY(-1px) scale(1.05);
}

/* ===== SINGLE PLAY/PAUSE BUTTON ===== */
.play-btn {
    background: rgba(79, 143, 132, 0.9);
}

.play-btn:hover {
    background: rgba(79, 143, 132, 1);
    box-shadow: 0 8px 25px rgba(79, 143, 132, 0.4);
}

.play-btn:active {
    transform: translateY(-1px) scale(1.05);
}

/* Different color when video is playing (pause state) */
.play-btn.playing {
    background: rgba(242, 106, 141, 0.9);
}

.play-btn.playing:hover {
    background: rgba(242, 106, 141, 1);
    box-shadow: 0 8px 25px rgba(242, 106, 141, 0.4);
}

/* Restart button */
.restart-btn {
    background: rgba(255, 193, 7, 0.9);
}

.restart-btn:hover {
    background: rgba(255, 193, 7, 1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Mute button */
.youtube-mute-btn {
    background: rgba(108, 117, 125, 0.9);
}

.youtube-mute-btn:hover {
    background: rgba(108, 117, 125, 1);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.youtube-mute-btn.unmuted {
    background: rgba(79, 143, 132, 0.9) !important;
}

.youtube-mute-btn.unmuted:hover {
    background: rgba(79, 143, 132, 1) !important;
    box-shadow: 0 8px 25px rgba(79, 143, 132, 0.4) !important;
}

.youtube-mute-btn.muted {
    background: rgba(108, 117, 125, 0.9) !important;
}

.youtube-mute-btn.muted:hover {
    background: rgba(108, 117, 125, 1) !important;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4) !important;
}

/* Button icons */
.control-btn i {
    font-size: 1.2rem;
    line-height: 1;
}

/* ===== HERO SUBTITLE ANIMATION ===== */
.hero-subtitle {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding-bottom: 10px;
    pointer-events: auto;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.hero-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4F8F84, transparent);
    animation: subtitleUnderline 3s ease-in-out infinite;
}

@keyframes subtitleUnderline {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
    transition: all 0.3s ease;
}

.mouse:hover {
    border-color: #4F8F84;
    transform: scale(1.05);
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* ===== LOADING ANIMATION ===== */
.hero-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #4F8F84;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== RIPPLE ANIMATIONS ===== */
@keyframes rippleExpand {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes rippleExpandSmall {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes rippleExpandLarge {
    0% {
        transform: scale(0);
        opacity: 0.3;
    }
    100% {
        transform: scale(6);
        opacity: 0;
    }
}

/* ===== AMBIENT RIPPLE INDICATORS ===== */
.ambient-ripple-indicator {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: ambientRipple 2s ease-out;
}

@keyframes ambientRipple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Cursor speed indicator (visual feedback) */
.cursor-speed-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Splash effect for clicks */
.click-splash {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    animation: splashExpand 0.6s ease-out;
}

@keyframes splashExpand {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== VIDEO ERROR FALLBACK ===== */
.video-error-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3c34 0%, #4F8F84 100%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.video-error-fallback i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== GLOW EFFECTS ===== */
.glow-effect {
    text-shadow: 
        0 0 10px rgba(79, 143, 132, 0.5),
        0 0 20px rgba(79, 143, 132, 0.3),
        0 0 30px rgba(79, 143, 132, 0.2);
}

/* ===== FADE IN ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== MOBILE SPECIFIC STYLES ==================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-section {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-content {
        left: 10%;
        width: 85%;
        bottom: 80%;
        transform: translateY(50%);
    }
    
    .hero-welcome-text {
        font-size: 2rem;
    }
    
    .hero-title-words {
        font-size: 1.5rem;
    }
    
    .kcic-acronym {
        font-size: 1.4rem;
    }
    
    .youtube-mute-btn, .play-btn, .restart-btn {
        width: 45px !important;
        height: 45px !important;
    }
    
    /* YouTube video fix for tablet */
    #youtubePlayer {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        top: 0 !important;
        left: 0 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 65vh !important;
        min-height: 500px !important;
    }
    
    /* Mobile-specific YouTube video sizing */
    #youtubePlayer {
        width: 120% !important;
        height: 100% !important;
        object-fit: cover !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        min-width: 100% !important;
        min-height: 100% !important;
    }
    
    .youtube-background {
        overflow: visible !important;
    }
    
    .hero-video-container {
        overflow: visible !important;
    }
    
    .hero-content {
        left: 5% !important;
        width: 90% !important;
        bottom: 20% !important;
        transform: translateY(0) !important;
    }
    
    .hero-welcome-text {
        font-size: 1.8rem !important;
    }
    
    .hero-title-words {
        font-size: 1.3rem !important;
    }
    
    .kcic-acronym {
        font-size: 1.2rem !important;
    }
    
    .youtube-mute-btn, .play-btn, .restart-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        bottom: 15% !important;
        right: 15px !important;
    }
    
    .video-controls {
        bottom: 10% !important;
        right: 15px !important;
    }
    
    .video-controls-group {
        padding: 10px;
        gap: 10px;
        border-radius: 40px;
    }
    
    .control-btn i {
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        height: 55vh !important;
        min-height: 400px !important;
    }
    
    /* Small mobile YouTube fix */
    #youtubePlayer {
        width: 140% !important;
        height: 100% !important;
        object-fit: cover !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .hero-content {
        left: 5% !important;
        width: 90% !important;
        bottom: 18% !important;
    }
    
    .hero-welcome-text {
        font-size: 1.5rem !important;
    }
    
    .hero-title-words {
        font-size: 1.1rem !important;
    }
    
    .kcic-acronym {
        font-size: 1rem !important;
    }
    
    .youtube-mute-btn, .play-btn, .restart-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
        bottom: 12% !important;
        right: 10px !important;
    }
    
    .video-controls-group {
        padding: 8px;
        gap: 8px;
        border-radius: 35px;
    }
    
    .control-btn i {
        font-size: 1rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-section {
        height: 50vh !important;
        min-height: 350px !important;
    }
    
    /* Extra small mobile YouTube fix */
    #youtubePlayer {
        width: 150% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .hero-content {
        bottom: 15% !important;
    }
    
    .hero-welcome-text {
        font-size: 1.4rem !important;
    }
    
    .hero-title-words {
        font-size: 1rem !important;
    }
    
    .kcic-acronym {
        font-size: 0.9rem !important;
    }
    
    .youtube-mute-btn, .play-btn, .restart-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
        bottom: 10% !important;
        right: 8px !important;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 80vh !important;
        min-height: 400px !important;
    }
    
    /* Landscape YouTube fix */
    #youtubePlayer {
        width: 100% !important;
        height: 120% !important;
        object-fit: cover !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .hero-content {
        bottom: 25% !important;
        left: 5% !important;
    }
    
    .video-controls {
        bottom: 15% !important;
    }
}

/* ===== PERFORMANCE & ACCESSIBILITY ===== */

/* Hide old video elements */
.hero-video, .video-overlay {
    display: none !important;
}

/* Video notification */
.video-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4F8F84;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10000;
    animation: fadeInOut 2s ease-in-out;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure smooth video playback */
.hero-video {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    will-change: opacity;
}

.hero-video.playing {
    opacity: 1;
    visibility: visible;
}

/* Better buffering indication */
.video-buffering {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    display: none;
}

.video-buffering.active {
    display: block;
}

/* Network quality indicator */
.network-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: none;
}

.network-indicator.slow {
    background: rgba(255, 87, 87, 0.8);
}

.network-indicator.fast {
    background: rgba(79, 143, 132, 0.8);
}

/* Performance mode for low-end devices */
@media (prefers-reduced-motion: reduce) {
    .hero-title-words,
    .hero-subtitle,
    .scroll-indicator,
    .mute-btn,
    .control-btn,
    .play-video-btn {
        animation: none !important;
        transition: none !important;
    }
    
    .wheel {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title-words.hovered,
    .hero-title-words.clicked {
        text-shadow: 
            0 0 5px rgba(79, 143, 132, 0.9),
            0 0 10px rgba(79, 143, 132, 0.7);
    }
    
    .youtube-mute-btn, .play-btn, .restart-btn {
        border-width: 3px;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .ripple-container {
        filter: brightness(0.9);
    }
}

/* Print styles (hide interactive elements when printing) */
@media print {
    .hero-section {
        height: 50vh !important;
        min-height: 300px !important;
    }
    
    .ripple-container,
    .video-controls,
    .scroll-indicator,
    .play-video-btn {
        display: none !important;
    }
    
    .hero-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        padding: 20px 0 !important;
    }
    
    .hero-title {
        color: #000 !important;
        text-shadow: none !important;
    }
    
    .hero-subtitle {
        color: #333 !important;
        text-shadow: none !important;
    }
    
    .hero-subtitle:after {
        display: none;
    }
}

/* ===== LETTER-BY-LETTER ANIMATION STYLES ===== */
.animated-letters {
    position: relative;
    display: inline-block;
}

.animated-letter {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.animated-letter.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-letter:nth-child(1) { transition-delay: 0.05s; }
.animated-letter:nth-child(2) { transition-delay: 0.10s; }
.animated-letter:nth-child(3) { transition-delay: 0.15s; }
.animated-letter:nth-child(4) { transition-delay: 0.20s; }
.animated-letter:nth-child(5) { transition-delay: 0.25s; }
.animated-letter:nth-child(6) { transition-delay: 0.30s; }
.animated-letter:nth-child(7) { transition-delay: 0.35s; }
.animated-letter:nth-child(8) { transition-delay: 0.40s; }
.animated-letter:nth-child(9) { transition-delay: 0.45s; }
.animated-letter:nth-child(10) { transition-delay: 0.50s; }
.animated-letter:nth-child(11) { transition-delay: 0.55s; }
.animated-letter:nth-child(12) { transition-delay: 0.60s; }

/* Different animation types */
@keyframes letterBounce {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes letterFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.letter-bounce .animated-letter.visible {
    animation: letterBounce 0.5s ease-out forwards;
}

.letter-fade .animated-letter.visible {
    animation: letterFade 0.4s ease-out forwards;
}

.letter-slide .animated-letter.visible {
    animation: letterSlide 0.4s ease-out forwards;
}

.letter-pop .animated-letter.visible {
    animation: letterPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== ANIMATION CONTROLS ===== */
.animation-controls {
    position: absolute;
    bottom: 150px;
    right: 20px;
    z-index: 3;
    display: flex;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.animation-controls:hover {
    opacity: 1;
}

.animation-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(79, 143, 132, 0.8);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.animation-btn:hover {
    background: rgba(79, 143, 132, 1);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.animation-btn.active {
    background: rgba(242, 106, 141, 0.9);
    border-color: rgba(242, 106, 141, 0.6);
}