/* ===== CSS Variables — Dark Theme ===== */
:root {
    --color-bg: #0a0a0f;
    --color-bg-elevated: #111118;
    --color-bg-card: #16161f;
    --color-bg-card-hover: #1c1c28;
    --color-surface: #1a1a24;
    --color-border: #2a2a3a;
    --color-border-hover: #3a3a50;
    --color-text: #e5e7eb;
    --color-text-light: #9ca3af;
    --color-text-muted: #6b7280;
    --color-text-dim: #4b5563;
    --color-accent: #60a5fa;
    --color-accent-hover: #3b82f6;
    --color-accent-glow: rgba(96, 165, 250, 0.3);
    --color-star: #ffffff;
    --color-star-dim: rgba(255, 255, 255, 0.4);
    --color-glow: rgba(96, 165, 250, 0.15);

    --font-main:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--color-accent-glow);

    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Stars Background ===== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-star);
    border-radius: 50%;
    opacity: 0;
    animation: star-rise linear infinite;
}

.star.small {
    width: 1px;
    height: 1px;
}

.star.medium {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px var(--color-star);
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow:
        0 0 8px var(--color-star),
        0 0 16px var(--color-accent-glow);
}

@keyframes star-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border-hover);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 100;
}

.logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    transition: var(--transition);
}

.logo-circle:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.logo-circle.small {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.logo-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: relative;
    z-index: 100;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    /* letter-spacing: -0.03em; */
    margin-bottom: 24px;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    /* border: 2px solid var(--color-border); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color:  var(--color-bg-card); */
    position: relative;
    animation: float 6s ease-in-out infinite;
    box-shadow:
        0 0 60px rgba(96, 165, 250, 0.1),
        inset 0 0 60px rgba(96, 165, 250, 0.05);
    background-image: url("../images/logo.svg");
    /* background-image: radial-gradient(circle var(--color-bg-card) #1a1a24); */
    background-size: contain;
}

.hero-circle::before {
    content: "";
    position: absolute;
    /* inset: -2px; */
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--color-accent), transparent 60%)
        border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.hero-logo {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 0.15em;
    opacity: 0.15;
}

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-muted);
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-dots span:nth-child(1) {
    animation-delay: 0s;
    background: var(--color-accent);
}
.hero-dots span:nth-child(2) {
    animation-delay: 0.3s;
}
.hero-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--color-bg-elevated);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    padding: 44px 32px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow:
        var(--shadow-lg),
        0 0 30px var(--color-accent-glow);
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
    display: block;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--color-text);
}

.about-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Courses Preview ===== */
.courses-preview {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.course-card {
    padding: 36px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent);
    opacity: 0;
    transition: var(--transition);
}

.course-card:hover {
    box-shadow:
        var(--shadow-md),
        0 0 20px var(--color-accent-glow);
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
    background: var(--color-bg-card-hover);
}

.course-card:hover::before {
    opacity: 1;
}

.course-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.course-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.course-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-link {
    font-weight: 500;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.course-link:hover {
    gap: 12px;
    color: var(--color-accent-hover);
}

.courses-more {
    text-align: center;
}

/* ===== Features ===== */
.features {
    padding: 100px 0;
    background: var(--color-bg-elevated);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    padding: 32px 24px;
    position: relative;
}

.feature-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-text-dim);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-number {
    color: var(--color-accent);
    text-shadow: 0 0 20px var(--color-accent-glow);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 48px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        var(--color-accent-glow) 0%,
        transparent 70%
    );
    opacity: 0.3;
    pointer-events: none;
}

.cta-inner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.cta-inner p {
    color: var(--color-text-light);
    margin-bottom: 36px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0 0;
    background: var(--color-bg-elevated);
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo-circle {
    border-color: var(--color-border-hover);
    background: var(--color-bg-card);
}

.footer-brand .logo-text,
.footer-brand .logo-subtitle {
    color: var(--color-text);
}

.footer-brand p {
    margin-top: 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    /* max-width: 280px; */
    line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-contact li {
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-circle {
        width: 260px;
        height: 260px;
    }

    .hero-logo {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.form-disabled-wrapper {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.form-disabled-wrapper form {
    opacity: 0.35;
    filter: grayscale(0.8);
    pointer-events: none;
    transition: var(--transition);
}

.form-disabled-wrapper form input,
.form-disabled-wrapper form select,
.form-disabled-wrapper form textarea,
.form-disabled-wrapper form button {
    cursor: not-allowed;
}

.form-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.form-overlay-badge {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-hover);
    border-radius: var(--radius-lg);
    padding: 20px 36px;
    text-align: center;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--color-accent-glow);
    animation: badge-pulse 3s ease-in-out infinite;
    pointer-events: auto;
}

.form-overlay-badge .badge-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.form-overlay-badge h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-overlay-badge p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

@keyframes badge-pulse {
    0%,
    100% {
        box-shadow:
            0 0 40px rgba(0, 0, 0, 0.6),
            0 0 0 1px var(--color-accent-glow);
    }
    50% {
        box-shadow:
            0 0 50px rgba(0, 0, 0, 0.7),
            0 0 0 2px var(--color-accent-glow),
            0 0 20px var(--color-accent-glow);
    }
}

@media (max-width: 480px) {
    .form-overlay-badge {
        padding: 16px 24px;
        margin: 0 16px;
    }
    .form-overlay-badge h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg-elevated);
        border-bottom: 1px solid var(--color-border);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .burger {
        display: flex;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .about-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-item {
        padding: 24px;
        background: var(--color-bg-card);
        border-radius: var(--radius-md);
        border: 1px solid var(--color-border);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-inner {
        padding: 40px 24px;
    }

    .cta-inner h2 {
        font-size: 1.6rem;
    }

    .about-card {
        padding: 32px 24px;
    }

    .course-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-circle {
        width: 200px;
        height: 200px;
    }

    .hero-logo {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-card {
        padding: 28px 20px;
    }

    .course-card {
        padding: 24px 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .cta-inner {
        padding: 32px 20px;
    }

    .cta-inner h2 {
        font-size: 1.4rem;
    }
}
/* Заглушка!!!! */
/* Головний контент */
 .body_1 {
            font-family: 'Montserrat', sans-serif;
            /* background: #0a0a0a; */
            /* color: #e5e5e5; */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }


.container_1 {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    /* max-width: 800px; */
}

.logo-wrapper_1 {
    margin-bottom: 2.5rem;
    /* display: block; */
    animation: fadeInDown 1s ease-out;
    /* text-align: center; */
}

.logo-wrapper_1 img {
    max-width: 220px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
    
}

.logo-wrapper_1 img:hover {
    transform: scale(1.05);
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

/* h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        h1 span {
            color: #fff;
        } */

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: #888;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Анімація будівництва */
.construction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

.gear {
    font-size: 2rem;
    animation: spin 4s linear infinite;
}

.gear:nth-child(2) {
    animation-direction: reverse;
    animation-duration: 3s;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background: #fff;
    border-radius: 2px;
    animation: progress 3s ease-in-out infinite alternate;
}

@keyframes progress {
    0% {
        width: 30%;
    }
    100% {
        width: 80%;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Анімації появи */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

       

/* конец заглушки */
