/* 
========================================
   1. Design System & Variables
========================================
*/
:root {
    /* Colors */
    --primary: #279EA4; /* App Teal */
    --primary-dark: #1F7E83; /* Darker Teal */
    --secondary: #5BC0C5; /* Lighter Teal */
    --accent: #E5F6F7; /* Very Light Teal */
    --dark: #124A4D; /* Deep Teal/Green for text/contrast */
    --text-main: #1D3557;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-soft: linear-gradient(135deg, #E5F6F7 0%, #FFFFFF 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(39, 158, 164, 0.4);

    /* Typography */
    --font-main: 'Tajawal', sans-serif;
    
    /* Spacing */
    --container-padding: 2rem;
    --border-radius: 16px;
}

/* Reset & Base HTML */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* 
========================================
   2. Components & Utilities
========================================
*/
.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.badge {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

/* 
========================================
   3. Navigation
========================================
*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.logo .dot {
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-links button.btn-lang {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex; /* Centering text */
    align-items: center;
    justify-content: center;
}

.nav-links button.btn-lang:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(39, 158, 164, 0.2);
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

/* Ensure button keeps its color */
.nav-links .btn-primary {
    color: var(--white) !important;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* 
========================================
   4. Hero Section
========================================
*/
.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--dark);
    transition: all 0.3s ease;
}

.btn-store.white {
    background: var(--white);
    color: var(--dark);
}

.btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2, 62, 138, 0.3);
}

.btn-store ion-icon {
    font-size: 2rem;
}

.btn-store div {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.btn-store div span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.btn-store div strong {
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Image & Mockup */
.image-content {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
    z-index: 5;
    /* Optional: Add a subtle shadow resembling a phone casing if image is flat screen */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    animation: badgeFloat 4s ease-in-out infinite;
}

.floating-badge ion-icon {
    color: var(--primary);
    font-size: 1.4rem;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    right: -20px;
    animation-delay: 2s;
}

/* 
========================================
   5. Features Section
========================================
*/
.features {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--accent);
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 
========================================
   6. Showcase Sections
========================================
*/
.showcase {
    padding: 6rem 0;
    overflow: hidden;
}

.showcase.inverted {
    background: var(--light-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.phone-mockup-flat {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.phone-mockup-flat img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white); /* Mock border */
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.check-list {
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list li ion-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

/* 
========================================
   7. Download & Footer
========================================
*/
/* 
========================================
   7. Download & Footer (Enhanced for "Fantastic" Look)
========================================
*/
.download-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    color: var(--text-main);
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--gradient-main);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.download-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.download-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.download-card:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 70px rgba(39, 158, 164, 0.15);
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

.download-image {
    display: flex;
    justify-content: center;
}

.download-image img {
    max-width: 80%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transform: rotate(-10deg);
}

/* Footer Container */
footer {
    padding: 5rem 0 2rem;
    background: linear-gradient(to bottom, var(--white), var(--light-bg));
    border-top: 1px solid rgba(39, 158, 164, 0.1);
    position: relative;
    overflow: hidden;
}

/* Decor Bubble in Footer */
footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr; /* Adjusted for better spacing */
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 320px;
    line-height: 1.8;
}

/* Footer Links "Fantastic" Style */
.footer-links-col {
    justify-self: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
}

/* Hover Effect with Glassmorphism */
.footer-links a:hover {
    background: rgba(39, 158, 164, 0.08); /* Light primary tint */
    color: var(--primary-dark);
    /* Slide effect logic is handled below with LTR/RTL support */
    box-shadow: 0 4px 15px rgba(39, 158, 164, 0.1);
}

/* Icon for links on hover (pseudo-element) */
.footer-links a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Directional Hover Moves */
html[dir="rtl"] .footer-links a:hover {
    padding-right: 20px;
    transform: translateX(-5px);
}
html[dir="ltr"] .footer-links a:hover {
    padding-left: 20px;
    transform: translateX(5px);
}

/* Social & Newsletter */
.footer-social {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align right */
}

.footer-social h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%; 
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    border: 1px solid rgba(0,0,0,0.05);
}

.social-icons a:hover {
    background: var(--gradient-main);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(39, 158, 164, 0.1);
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links-col {
        justify-self: center;
        width: 100%;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    html[dir="rtl"] .footer-links a:hover {
        transform: translateX(0); 
        padding-right: 10px; /* Reset padding shift mostly */
    }
    html[dir="ltr"] .footer-links a:hover {
        transform: translateX(0);
        padding-left: 10px;
    }

    .footer-social {
        justify-self: center;
        align-items: center;
    }
}

/* 
========================================
   8. Animations & Bubbles
========================================
*/
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

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

.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 15s infinite ease-in;
}

/* Animation Classes for JS */
.fade-in-up, 
.scroll-reveal, 
.scroll-reveal-left, 
.scroll-reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.fade-in-up {
    transform: translateY(30px);
}

.scroll-reveal {
    transform: translateY(50px);
}

.scroll-reveal-left {
    transform: translateX(-50px);
}

.scroll-reveal-right {
    transform: translateX(50px);
}

.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* 
========================================
   9. Mobile Responsiveness
========================================
*/
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem; /* Slightly reduced padding */
    }

    /* Navbar fixes for mobile */
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        /* Reset mobile menu styles since we only have the button now */
        position: static;
        transform: none;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
    }

    .menu-toggle {
        display: none !important; /* Hide hamburger entirely */
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-logo-img {
        height: 30px;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Hero adjustments */
    .hero {
        padding-top: 6rem; /* Less top padding */
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem; /* Smaller heading */
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .cta-buttons, .stats {
        justify-content: center;
    }

    .image-content {
        order: -1; /* Image on top */
        margin-bottom: 2rem;
    }
    
    .phone-mockup {
        width: 250px; /* Smaller phone */
    }

    /* Features & Showcase */
    .showcase-grid, .download-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .showcase-image {
        margin-bottom: 2rem;
    }
    
    .inverted .showcase-image {
        order: -1;
    }

    .check-list li {
        justify-content: center;
        font-size: 1rem;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .download-image img {
        margin-top: 2rem;
        transform: rotate(0);
        max-width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-self: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* 
========================================
   10. Premium Effects (Waves, Shimmer, Trail)
========================================
*/

/* Liquid Wave */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-primary, .btn-store {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-store::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

/* Mouse Trail Bubbles */
.mouse-bubble {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(39, 158, 164, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: popAndFade 1s forwards;
}

@keyframes popAndFade {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* 
========================================
   11. Washing Machine Preloader
========================================
*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.washing-machine {
    width: 100px;
    height: 120px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 15px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: shake 0.5s infinite;
}

/* Controls Panel */
.washing-machine::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: -15px 0 0 var(--text-light);
}

.door {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    overflow: hidden;
    background: #DDF3F5;
}

.drum {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(39, 158, 164, 0.2); */
}

/* Spinning Clothes/Bubbles */
.bubble-load {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 -20px;
    animation: spinDrum 1s linear infinite;
}

.bubble-load:nth-child(2) {
    background: var(--secondary);
    transform-origin: 0 -15px;
    animation-delay: 0.2s;
    width: 10px;
    height: 10px;
}

.bubble-load:nth-child(3) {
    background: var(--primary-dark);
    transform-origin: 0 -25px;
    animation-delay: 0.5s;
    width: 12px;
    height: 12px;
}

.loading-text {
    margin-top: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    animation: pulse 1s infinite;
}

@keyframes spinDrum {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shake {
    0% { transform: translateY(0); }
    25% { transform: translateY(-2px) rotate(1deg); }
    50% { transform: translateY(0); }
    75% { transform: translateY(2px) rotate(-1deg); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
