/* Ледяные пустоши - основная палитра */
:root {
    --ice-white: #E4F1F9;
    --ice-blue: #A3CFEC;
    --deep-ice: #2C4356;
    --night-blue: #152530;
    --aurora-teal: #26D0CE;
    --aurora-blue: #1A2980;
    --frost-accent: #64B6E9;
}

/* Основные элементы */
body {
    background: var(--night-blue);
    color: var(--ice-white);
    background-image: linear-gradient(to bottom, var(--night-blue), #1e3040);
}

h1, h2, h3, h4 {
    color: var(--ice-white);
    text-shadow: 0 0 15px var(--frost-accent);
}

.container {
    max-width: 1578px;
    margin: auto;
}

/* Навигация */
.navbar {
    background: rgba(21, 37, 48, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--frost-accent);
}

.navbar a {
    color: var(--ice-white);
}

.navbar a:hover {
    color: var(--aurora-teal);
}

.line {
    background: var(--ice-blue);
}

.navbar .menu-items {
    background: var(--night-blue);
    box-shadow: 0 0 25px rgba(38, 208, 206, 0.2);
}

/* Хедер */
.header {
    background-image: linear-gradient(to bottom, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7)), url('/api/placeholder/1600/900');
    background-size: cover;
    border-bottom: 3px solid var(--aurora-teal);
}

.header-text {
    text-shadow: 0 0 20px var(--aurora-teal);
}

.header-text p {
    color: var(--ice-blue);
}

/* О нас */
.about {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.8), rgba(44, 67, 86, 0.8));
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(38, 208, 206, 0.15);
}

.about h2 {
    color: var(--aurora-teal);
}

.about p {
    color: var(--ice-blue);
}

.about-img {
    border: 2px solid var(--aurora-teal);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(38, 208, 206, 0.3);
}

/* Каталог */
.catalog-wrapper {
    background: linear-gradient(to right, rgba(21, 37, 48, 0.5), rgba(44, 67, 86, 0.5));
}

.films-item-wrapper {
    border-radius: 10px;
    background: linear-gradient(to right, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    box-shadow: 0 0 20px rgba(38, 208, 206, 0.15);
}

.catalog h3 {
    color: var(--aurora-teal);
}

.catalog p {
    color: var(--ice-blue);
}

.catalog-img img {
    border: 2px solid var(--frost-accent);
    border-radius: 8px;
}

.catalog-btn {
    background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue));
    color: var(--ice-white);
    border: none;
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.5);
}

.catalog-btn:hover {
    box-shadow: 0 0 25px rgba(38, 208, 206, 0.8);
    transform: translateY(-3px);
}

/* Обратная связь */
#feedback {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(38, 208, 206, 0.15);
}

.feedback-field {
    background-color: rgba(21, 37, 48, 0.8);
    color: var(--ice-white);
    border: 1px solid var(--aurora-teal);
    box-shadow: inset 0 0 10px rgba(38, 208, 206, 0.2);
}

.feedback-field:focus {
    border: 1px solid var(--frost-accent);
    box-shadow: inset 0 0 15px rgba(38, 208, 206, 0.4);
}

.feedback-btn {
    background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue));
    color: var(--ice-white);
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.5);
}

.feedback-btn:hover {
    box-shadow: 0 0 25px rgba(38, 208, 206, 0.8);
    transform: translateY(-3px);
}

/* Контакты */
.contacts-wrapper {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(38, 208, 206, 0.15);
}

.contacts-address, .contacts-link {
    color: var(--ice-blue);
}

.contacts-link:hover {
    color: var(--aurora-teal);
}

/* Футер */
footer {
    background: var(--night-blue);
    border-top: 1px solid var(--aurora-teal);
}

.info-links a {
    color: var(--ice-blue);
}

.info-links a:hover {
    color: var(--aurora-teal);
}

.copyright {
    color: var(--ice-white);
    text-shadow: 0 0 10px var(--aurora-teal);
}

/* Анимированные элементы */
@keyframes aurora-glow {
    0% {
        box-shadow: 0 0 10px var(--aurora-teal);
    }
    50% {
        box-shadow: 0 0 25px var(--aurora-teal);
    }
    100% {
        box-shadow: 0 0 10px var(--aurora-teal);
    }
}

.game-card, .category-card {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.8), rgba(44, 67, 86, 0.8));
    border: 1px solid var(--frost-accent);
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.3);
    animation: aurora-glow 4s infinite;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.8), rgba(44, 67, 86, 0.8));
    border-left: 3px solid var(--aurora-teal);
}

.featured-grid .game-card.large {
    background-image: linear-gradient(to bottom, rgba(21, 37, 48, 0.5), rgba(44, 67, 86, 0.7)), url('/api/placeholder/1600/900');
    border: 2px solid var(--aurora-teal);
}

/* Дополнительные эффекты */
.stats-grid > div {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    border-radius: 10px;
    border: 1px solid var(--frost-accent);
    padding: 20px;
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.3);
}

/* Ледяные пустоши - основная палитра */
:root {
    --ice-white: #E4F1F9;
    --ice-blue: #A3CFEC;
    --deep-ice: #2C4356;
    --night-blue: #152530;
    --aurora-teal: #26D0CE;
    --aurora-blue: #1A2980;
    --frost-accent: #64B6E9;
    --crystal-blue: #8EDCE6;
    --frozen-shadow: #091218;
    --icicle-highlight: #D5F3FF;
}

/* Основные элементы */
body {
    background: var(--night-blue);
    color: var(--ice-white);
    background-image: linear-gradient(to bottom, var(--night-blue), #1e3040);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18l5-7 8 3L25 8l5 4 3-6 4 5 6-3 3 5 6-2 2 6h-32zM38 30l5-7 8 3-1-6 5 4 3-6 4 5 6-3 3 5 6-2 2 6h-32zM64 55l5-7 8 3-1-6 5 4 3-6 4 5 6-3 3 5 6-2 2 6h-32z' fill='%238edce6' fill-opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4 {
    color: var(--ice-white);
    text-shadow: 0 0 15px var(--frost-accent);
    position: relative;
}

h1::after, h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 120px;
    background: linear-gradient(to right, transparent, var(--aurora-teal), transparent);
}

.container {
    max-width: 1578px;
    margin: auto;
}

/* Навигация */
.navbar {
    background: rgba(21, 37, 48, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--frost-accent);
    box-shadow: 0 5px 15px rgba(9, 18, 24, 0.5);
}

.navbar a {
    color: var(--ice-white);
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--aurora-teal);
    transition: width 0.3s ease;
}

.navbar a:hover {
    color: var(--aurora-teal);
}

.navbar a:hover::after {
    width: 100%;
}

.line {
    background: var(--crystal-blue);
}

.navbar .menu-items {
    background: var(--night-blue);
    box-shadow: 0 0 25px rgba(38, 208, 206, 0.2);
    border-right: 1px solid var(--frost-accent);
}

.logo {
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--aurora-teal);
    opacity: 0.7;
    filter: blur(8px);
    animation: pulse 4s infinite;
}

/* Хедер */
.header {
    background-image: linear-gradient(to bottom, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7)), url('/api/placeholder/1600/900');
    background-size: cover;
    border-bottom: 3px solid var(--aurora-teal);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, var(--aurora-teal) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, var(--aurora-blue) 0%, transparent 20%);
    opacity: 0.1;
    filter: blur(40px);
    animation: aurora-shift 15s infinite alternate;
}

.header-text {
    text-shadow: 0 0 20px var(--aurora-teal);
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(21, 37, 48, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(163, 207, 236, 0.2);
}

.header-text h1 {
    background: linear-gradient(to right, var(--ice-white), var(--crystal-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 30px var(--frost-accent);
}

.header-text p {
    color: var(--ice-blue);
    position: relative;
}

@keyframes aurora-shift {
    0% {
        opacity: 0.1;
        transform: translateX(-5%) translateY(-2%);
    }
    100% {
        opacity: 0.15;
        transform: translateX(5%) translateY(2%);
    }
}

/* О нас */
.about {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.8), rgba(44, 67, 86, 0.8));
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(38, 208, 206, 0.15);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zM0 5.373l.828.83-1.415 1.414L0 5.374zM0 11.03l3.657 3.657-1.414 1.415L0 13.858zM0 48.97l3.657-3.657-1.414-1.415L0 46.142zM0 54.627l.828-.83-1.415-1.413L0 54.627zM60 5.373l-.83.83 1.416 1.414L60 5.373zM60 11.03l-3.657 3.657 1.414 1.415L60 13.858zM60 48.97l-3.657-3.657-1.414 1.415L60 46.142zM60 54.627l-.83-.83-1.415 1.413L60 54.627zM39.9 16.385l1.414-1.414 1.413 1.414-1.414 1.414-1.414-1.414zM34.828 15.9l1.414-1.415 7.07 7.07-1.415 1.415-7.07-7.07zM32 13.07l1.415-1.414 14.14 14.142-1.414 1.414L32 13.07zM40.485 20.142l1.414-1.414L48 25.857l-1.414 1.415-6.1-7.07zM20.142 19.514l1.414 1.414-7.07 7.07-1.415-1.415 7.07-7.07zM13.07 32l1.415 1.414-14.14 14.14-1.414-1.414L13.07 32zM5.9 34.828l1.414 1.414-1.413 1.414-1.414-1.414 1.413-1.414zM25.857 12l7.07 7.07-1.414 1.415-7.07-7.07L25.857 12z' fill='%238edce6' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.about-left-col {
    position: relative;
}

.about-left-col::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, transparent, rgba(38, 208, 206, 0.05));
    z-index: 0;
    border-radius: 50%;
    filter: blur(15px);
}

.about h2 {
    color: var(--aurora-teal);
    position: relative;
}

.about h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--aurora-teal);
    box-shadow: 0 0 10px var(--aurora-teal);
}

.about p {
    color: var(--ice-blue);
    position: relative;
}

.about p::first-letter {
    font-size: 1.5em;
    color: var(--icicle-highlight);
    text-shadow: 0 0 8px var(--frost-accent);
}

.about-img {
    border: 2px solid var(--aurora-teal);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(38, 208, 206, 0.3);
    position: relative;
    z-index: 1;
    clip-path: polygon(
        0% 5%,
        5% 0%,
        95% 0%,
        100% 5%,
        100% 95%,
        95% 100%,
        5% 100%,
        0% 95%
    );
}

/* Каталог */
.catalog-wrapper {
    background: linear-gradient(to right, rgba(21, 37, 48, 0.5), rgba(44, 67, 86, 0.5));
    position: relative;
}

.catalog-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--aurora-teal), transparent);
}

.films-item-wrapper {
    border-radius: 10px;
    background: linear-gradient(to right, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    box-shadow: 0 0 20px rgba(38, 208, 206, 0.15);
    position: relative;
    border: 1px solid rgba(163, 207, 236, 0.1);
    overflow: hidden;
}

.films-item-wrapper::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(38, 208, 206, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.films-item-wrapper:hover::after {
    opacity: 1;
}

.catalog h3 {
    color: var(--aurora-teal);
    position: relative;
    display: inline-block;
}

.catalog h3::before {
    content: "❄";
    position: absolute;
    left: -20px;
    top: 0;
    font-size: 0.8em;
    color: var(--aurora-teal);
    opacity: 0.7;
}

.catalog p {
    color: var(--ice-blue);
    text-shadow: 0 0 5px var(--frozen-shadow);
}

.catalog-img img {
    border: 2px solid var(--frost-accent);
    border-radius: 8px;
    filter: drop-shadow(0 0 8px var(--aurora-teal));
    transition: all 0.3s ease;
}

.catalog-img:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px var(--aurora-teal));
}

.catalog-btn {
    background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue));
    color: var(--ice-white);
    border: none;
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.catalog-btn::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;
    z-index: -1;
}

.catalog-btn:hover {
    box-shadow: 0 0 25px rgba(38, 208, 206, 0.8);
    transform: translateY(-3px);
}

.catalog-btn:hover::before {
    left: 100%;
}

/* Обратная связь */
#feedback {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(38, 208, 206, 0.15);
    position: relative;
    overflow: hidden;
}

#feedback::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--aurora-teal);
    filter: blur(15px);
    opacity: 0.5;
}

#feedback::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--aurora-blue);
    filter: blur(15px);
    opacity: 0.5;
}

.feedback-field {
    background-color: rgba(21, 37, 48, 0.8);
    color: var(--ice-white);
    border: 1px solid var(--aurora-teal);
    box-shadow: inset 0 0 10px rgba(38, 208, 206, 0.2);
    position: relative;
}

.feedback-field::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--aurora-teal), var(--frost-accent));
    transition: width 0.3s ease;
}

.feedback-field:focus {
    border: 1px solid var(--frost-accent);
    box-shadow: inset 0 0 15px rgba(38, 208, 206, 0.4);
    outline: none;
}

.feedback-field:focus::after {
    width: 100%;
}

.feedback-btn {
    background: linear-gradient(135deg, var(--aurora-teal), var(--aurora-blue));
    color: var(--ice-white);
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.5);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feedback-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.feedback-btn:hover {
    box-shadow: 0 0 25px rgba(38, 208, 206, 0.8);
    transform: translateY(-3px);
}

.feedback-btn:hover::before {
    left: 100%;
}

/* Контакты */
.contacts-wrapper {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(38, 208, 206, 0.15);
}

.contacts-address, .contacts-link {
    color: var(--ice-blue);
}

.contacts-link:hover {
    color: var(--aurora-teal);
}

/* Футер */
footer {
    background: var(--night-blue);
    border-top: 1px solid var(--aurora-teal);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(38, 208, 206, 0.03), transparent);
    z-index: 0;
}

.info-links {
    position: relative;
    z-index: 1;
    background: rgba(21, 37, 48, 0.5);
    padding: 15px 25px;
    border-radius: 30px;
}

.info-links a {
    color: var(--ice-blue);
    position: relative;
}

.info-links a::before {
    content: "•";
    position: absolute;
    left: -15px;
    top: 0;
    color: var(--aurora-teal);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-links a:hover {
    color: var(--aurora-teal);
}

.info-links a:hover::before {
    opacity: 1;
}

.copyright {
    color: var(--ice-white);
    text-shadow: 0 0 10px var(--aurora-teal);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.copyright::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--aurora-teal), transparent);
}

/* Анимированные элементы */
@keyframes aurora-glow {
    0% {
        box-shadow: 0 0 10px var(--aurora-teal);
    }
    50% {
        box-shadow: 0 0 25px var(--aurora-teal);
    }
    100% {
        box-shadow: 0 0 10px var(--aurora-teal);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@keyframes ice-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes frost-breath {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

.game-card, .category-card {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.8), rgba(44, 67, 86, 0.8));
    border: 1px solid var(--frost-accent);
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.3);
    animation: aurora-glow 4s infinite;
    position: relative;
    overflow: hidden;
}

.game-card::before, .category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 240, 255, 0.05), transparent);
    background-size: 200% 200%;
    animation: ice-shimmer 3s linear infinite;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.8), rgba(44, 67, 86, 0.8));
    border-left: 3px solid var(--aurora-teal);
    position: relative;
}

.timeline-item::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--aurora-teal);
    left: -9px;
    top: 30px;
    box-shadow: 0 0 10px var(--aurora-teal);
    animation: pulse 3s infinite;
}

.featured-grid .game-card.large {
    background-image: linear-gradient(to bottom, rgba(21, 37, 48, 0.5), rgba(44, 67, 86, 0.7)), url('/api/placeholder/1600/900');
    border: 2px solid var(--aurora-teal);
    position: relative;
}

.featured-grid .game-card.large::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, var(--aurora-teal), transparent 70%);
    opacity: 0.15;
    filter: blur(40px);
    animation: frost-breath 5s infinite;
}

/* Дополнительные эффекты */
.stats-grid > div {
    background: linear-gradient(135deg, rgba(21, 37, 48, 0.7), rgba(44, 67, 86, 0.7));
    border-radius: 10px;
    border: 1px solid var(--frost-accent);
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-grid > div::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 243, 255, 0.05) 0%, transparent 50%);
    transform: rotate(30deg);
}

/* Снежинки и ледяные элементы */
.about::before, .feedback-field::before, .category-grid::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ice-white);
    opacity: 0.6;
    pointer-events: none;
}

.about::before {
    top: 20%;
    right: 10%;
    animation: pulse 4s infinite 1s;
}

.feedback-field::before {
    top: 30%;
    left: 5%;
    animation: pulse 4s infinite 2s;
}

.category-grid::before {
    bottom: 15%;
    right: 15%;
    animation: pulse 4s infinite 0.5s;
}