    :root {
        --primary: #005f73;
        --primary-light: rgba(0, 95, 115, 0.1);
        --secondary: #0a9396;
        --accent: #94d2bd;
        --error: #d9534f;
        --light: #e9d8a6;
        --dark: #001219;
        --white: #ffffff;
        --gray: #f8f9fa;
        --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }



.image-text {
    position: absolute;
    top: 35%;
    right: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 500px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: pre-line;
    z-index: 1;
}


.imgIcon{
    width: 50px;
    height: 50px;
    margin-bottom: 35px;
}

.one_c {
    color:white;
    margin-bottom: 25px;
    font-size:35px;
}


 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Montserrat', sans-serif;
 }

 body {
     background-color: var(--gray);
     color: var(--dark);
     overflow-x: hidden;
 }

 /* Стильный хедер */
 .header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.5rem 5%;
     background-color: #203745;
     backdrop-filter: blur(10px);
     z-index: 1000;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     transition: var(--transition);
 }

 .header.scrolled {
     padding: 1rem 5%;
     background: rgba(0, 95, 115, 0.98);
 }

 .logo {
     height: 50px;
     transition: var(--transition);
 }

 .nav-container {
     display: flex;
     align-items: center;
     gap: 2rem;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
 }

 .nav-links a {
     position: relative;
     color: var(--white);
     text-decoration: none;
     font-weight: 500;
     font-size: 1rem;
     padding: 0.5rem 0;
     transition: var(--transition);
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--accent);
     transition: var(--transition);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .login-icon {
     color: var(--white);
     font-size: 1.5rem;
     cursor: pointer;
     transition: var(--transition);
 }

 .login-icon:hover {
     transform: scale(1.1);
     color: var(--accent);
 }

 .burger-menu {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 21px;
     cursor: pointer;
     z-index: 1001;
 }

 .burger-menu span {
     display: block;
     height: 3px;
     width: 100%;
     background: var(--white);
     border-radius: 3px;
     transition: var(--transition);
 }

 /* Герой секция с параллакс эффектом */
 .hero {
     position: relative;
     height: 100vh;
     min-height: 600px;
     /* overflow: hidden; */
     /* display: flex;
     align-items: center;
     justify-content: center; */
     margin-top: 80px;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(0, 31, 41, 0.8), rgba(0, 95, 115, 0.6));
     z-index: 1;
 }

 .hero-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
     transform: scale(1);
     transition: transform 10s ease;
 }

 .hero:hover .hero-image {
     transform: scale(1.05);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     top: 100px;
     left: 10%;
     max-width: 1200px;
 }

 .hero-title {
     font-size: 1.7rem;
     font-weight: 800;
     color: var(--white);
     margin-bottom: 1.5rem;
     line-height: 1.2;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s forwards 0.3s;
 }

.image-text {
    position: absolute;
    top: 35%;
    right: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 500px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: pre-line;
    z-index: 1;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}



 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-subtitle {
     font-size: 1.5rem;
     color: var(--light);
     margin-bottom: 2.5rem;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 1s forwards 0.6s;
 }

 .hero-button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 1rem 2.5rem;
     background: var(--accent);
     color: var(--dark);
     border: none;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 3s forwards 4s;
     overflow: hidden;
     position: relative;
 }

 .hero-button:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
 }

 .hero-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: 0.5s;
 }

 .hero-button:hover::before {
     left: 100%;
 }


 .features-section {
        padding: 6rem 2rem;
        background: linear-gradient(to bottom, var(--white) 0%, var(--gray) 100%);
        position: relative;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
        position: relative;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }




    .section-subtitle {
        font-size: 1.2rem;
        color: var(--secondary);
        margin-bottom: 1.5rem;
    }

    .title-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .decoration-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--accent), transparent);
    }

    .decoration-dot {
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
        margin: 0 15px;
        position: relative;
    }

    .decoration-dot::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px solid var(--accent);
        border-radius: 50%;
        opacity: 0.3;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.3; }
        50% { transform: scale(1.2); opacity: 0.1; }
        100% { transform: scale(1); opacity: 0.3; }
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .feature-card {
        background: var(--white);
        border-radius: 15px;
        padding: 2.5rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        z-index: 1;
        border: 1px solid rgba(0, 95, 115, 0.1);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        position: relative;
    }

    .icon-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-light);
        border-radius: 50%;
        transform: scale(0);
        transition: var(--transition);
    }

    .feature-card:hover .icon-background {
        transform: scale(1);
    }

    .feature-icon {
        position: relative;
        font-size: 2rem;
        color: var(--primary);
        transition: var(--transition);
    }

    .feature-card:hover .feature-icon {
        color: var(--white);
        transform: scale(1.1);
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--primary);
        position: relative;
        display: inline-block;
    }

    .feature-card h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--accent);
        transition: var(--transition);
    }

    .feature-card:hover h3::after {
        width: 60px;
    }

    .feature-card p {
        color: var(--dark);
        opacity: 0.8;
        line-height: 1.6;
        transition: var(--transition);
    }

    .feature-card:hover p {
        opacity: 1;
    }

    .feature-wave {
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 60px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".05" fill="%23005f73"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".1" fill="%23005f73"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" opacity=".15" fill="%23005f73"></path></svg>');
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .feature-card:hover .feature-wave {
        opacity: 1;
        bottom: -10px;
    }

    .features-cta {
        text-align: center;
        margin-top: 4rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        padding: 1rem 2.5rem;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 95, 115, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cta-button:hover {
        background: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(10, 147, 150, 0.4);
    }

    .button-arrow {
        margin-left: 10px;
        transition: var(--transition);
    }

    .cta-button:hover .button-arrow {
        transform: translateX(5px);
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .ctas-buttons{
        display: inline-flex;
        align-items: center;
        padding: 1rem 2.5rem;
        background: none;
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 95, 115, 0.3);
        position: relative;
        overflow: hidden;
        color: black;
    }


      .ctas-buttons:hover {
        background: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(10, 147, 150, 0.4);
    }

    .ctas-buttons:hover  {
        transform: translateX(5px);
    }

    .ctas-buttons::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .ctas-buttons:hover::before {
        left: 100%;
    }

    /* Анимация для текста */
.texta.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Анимация для блока кнопок */
.features-cta.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Анимация для отдельных кнопок */
.cta-button.visible,
.ctas-buttons.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Дополнительные стили для плавности */
.texta {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.features-cta {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button,
.ctas-buttons {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Эффекты при наведении на кнопки (опционально) */
.cta-button:hover,
.ctas-buttons:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover .button-arrow,
.ctas-buttons:hover .button-arrow {
    transform: translateX(3px);
}

.button-arrow {
    transition: transform 0.3s ease;
}



    /* Анимации при прокрутке */
    .feature-card {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

            .how-it-works {
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {

            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: 0;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 5rem;
            position: relative;
            z-index: 2;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 20px;
            transition: all 0.5s ease;
        }

        .step:hover {
            transform: translateY(-10px);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
            position: relative;
            transition: all 0.5s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 15px 30px rgba(46, 125, 50, 0.6);
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px dashed var(--primary);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .step:hover .step-number::after {
            opacity: 1;
        }

        .step h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .step:hover h3 {
            color: var(--primary-dark);
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 1;
            box-shadow: var(--glow);
        }

.how-it-works .step.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.how-it-works .section-title.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Стили для анимации шагов */
.how-it-works .step.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Дополнительные стили для красоты */
.how-it-works .section-title h2 {
    transition: all 0.4s ease-out;
}

.how-it-works .section-title p {
    transition: all 0.4s ease-out 0.1s;
}

.how-it-works .section-title.visible h2,
.how-it-works .section-title.visible p {
    opacity: 1;
    transform: translateY(0);
}

/* Изначальное состояние */
.how-it-works .section-title h2,
.how-it-works .section-title p {
    opacity: 0;
    transform: translateY(10px);
}

/* Опционально: можно добавить задержку для каждого шага */
.how-it-works .step:nth-child(1) { transition-delay: 0.1s; }
.how-it-works .step:nth-child(2) { transition-delay: 0.2s; }
.how-it-works .step:nth-child(3) { transition-delay: 0.3s; }
.how-it-works .step:nth-child(4) { transition-delay: 0.4s; }


.texta{
    text-align:center;
    font-size:30px;
    color:black;
    font-weight:600;
}

/* Общие стили для анимации */
.feature-card.visible,
.texta.visible,
.features-cta.visible,
.cta-button.visible,
.ctas-buttons.visible,
.features-section .section-header.visible,
.features-section .section-title.visible,
.features-section .section-subtitle.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Специфичные стили для section-header */
.features-section .section-header {
    transition: all 0.6s ease-out;
}

.features-section .section-title {
    transition: all 0.6s ease-out 0.1s;
}

.features-section .section-subtitle {
    transition: all 0.6s ease-out 0.2s;
}

    .footer {
     background: white;
     color: black;
     padding: 4rem 5% 2rem;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-logo {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: var(--white);
 }

 .footer-about {
     font-size: 0.95rem;
     line-height: 1.8;
     margin-bottom: 1.5rem;
     opacity: 0.8;
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     color: var(--white);
     transition: var(--transition);
 }

 .social-link:hover {
     background: var(--accent);
     color: var(--dark);
     transform: translateY(-3px);
 }

 .footer-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     position: relative;
 }

 .footer-title::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 40px;
     height: 2px;
     background: var(--accent);
 }

 .footer-links {
     list-style: none;
 }

 .footer-link {
     margin-bottom: 0.8rem;
 }

 .footer-link a {
     color: black;
     text-decoration: none;
     transition: var(--transition);
     font-size: 0.95rem;
 }

 .footer-link a:hover {
     color: var(--accent);
     padding-left: 5px;
 }

 .footer-contact {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
     font-size: 0.95rem;
     opacity: 0.8;
 }

 .footer-contact i {
     margin-right: 1rem;
     color: var(--accent);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     margin-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
     color: black;
     font-weight: 600;
 }

.logoFooter {
    height: 150px;
}

 /* Кнопка "Наверх" */
 .back-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: var(--primary);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     cursor: pointer;
     transition: var(--transition);
     opacity: 0;
     visibility: hidden;
     z-index: 999;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .back-to-top.active {
     opacity: 1;
     visibility: visible;
 }

 .back-to-top:hover {
     background: var(--secondary);
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
 }


 .floating {
     animation: float 6s ease-in-out infinite;
 }

 /* Анимации */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .floating {
     animation: float 6s ease-in-out infinite;
 }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
        }
    }

    @media (max-width: 576px) {
     .image-text {
         font-size: 2.5rem;
     }

     .how-it-works {
        padding: 20px 15px;
    }
    
    .how-it-works .section-title h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .how-it-works .section-title p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .how-it-works .steps {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .how-it-works .step {
        text-align: center;
        padding: 20px 15px;
        background: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .how-it-works .step-number {
        width: 40px;
        height: 40px;
        background: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
        margin: 0 auto 15px;
    }
    
    .how-it-works .step h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }
    
    .how-it-works .step p {
        font-size: 14px;
        line-height: 1.4;
        color: #666;
        margin: 0;
    }

   
 }





        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes shine {
            to {
                transform: translateX(100%) rotate(30deg);
            }
        }

