/* static/css/about.css */

/* ========== ПЕРЕМЕННЫЕ ДЛЯ СТРАНИЦЫ О НАС ========== */
:root {
    --about-black: #0a0a0a;
    --about-dark: #1a1a1a;
    --about-gray: #2a2a2a;
    --about-light: #333333;
    --about-accent: #e31b23;
    --about-accent-dark: #b3141b;
    --about-accent-glow: rgba(227, 27, 35, 0.3);
    --about-text: #f5f5f5;
    --about-text-dim: #b0b0b0;
    --about-border: rgba(227, 27, 35, 0.2);
}

/* ========== ОСНОВНЫЕ СТИЛИ СТРАНИЦЫ ========== */
.about-page {
    background-color: var(--about-black);
    color: var(--about-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Контейнер для секций */
.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .about-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 1.5rem;
    }
}

/* ========== HERO СЕКЦИЯ - ОБНОВЛЕННАЯ ========== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--about-black);
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.about-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: screen;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--about-black) 100%);
    z-index: 2;
}

.about-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(227, 27, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 27, 35, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    opacity: 0.3;
}

.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.about-hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--about-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--about-accent);
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1200px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

.about-hero-left {
    animation: fadeInLeft 1s ease;
}

.about-hero-right {
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-hero-title {
    margin-bottom: 2rem;
}

.about-hero-title-line {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--about-text);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.about-hero-title-line:first-child {
    color: var(--about-text);
}

.about-hero-title-line:nth-child(2) {
    color: var(--about-accent);
    font-size: clamp(3.5rem, 9vw, 6rem);
    margin: 0.5rem 0;
}

.about-hero-title-line-small {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--about-text-dim);
    margin-top: 1rem;
    letter-spacing: 1px;
}

.about-hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--about-text-dim);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (max-width: 992px) {
    .about-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.about-hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .about-hero-stats {
        justify-content: center;
    }
}

.about-hero-stat {
    text-align: left;
}

@media (max-width: 992px) {
    .about-hero-stat {
        text-align: center;
    }
}

.about-hero-stat-number {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--about-accent-glow);
}

.about-hero-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--about-text-dim);
}

.about-hero-quote {
    background: rgba(227, 27, 35, 0.05);
    border-left: 4px solid var(--about-accent);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.about-hero-quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--about-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-hero-quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-hero-quote-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--about-accent);
}

.about-hero-quote-author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.25rem;
}

.about-hero-quote-author-info p {
    font-size: 0.85rem;
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== СЕКЦИЯ ФИЛОСОФИИ ========== */
.about-philosophy {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--about-dark) 0%, var(--about-black) 100%);
    overflow: hidden;
}

.about-philosophy-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-philosophy-shape {
    position: absolute;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, var(--about-accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: -20%;
    right: -20%;
    animation: rotateSlow 30s linear infinite;
}

.about-philosophy-shape-2 {
    position: absolute;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -20%;
    left: -10%;
    animation: rotateSlow 40s linear infinite reverse;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 992px) {
    .about-philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-philosophy-text {
    padding-right: 2rem;
}

.about-philosophy-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--about-accent);
    margin-bottom: 1.5rem;
    display: block;
}

.about-philosophy-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--about-text);
}

.about-philosophy-title span {
    color: var(--about-accent);
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.about-philosophy-description {
    color: var(--about-text-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-philosophy-quote {
    border-left: 3px solid var(--about-accent);
    padding-left: 2rem;
    margin-top: 3rem;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--about-text);
    position: relative;
}

.about-philosophy-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 4rem;
    color: var(--about-accent);
    opacity: 0.3;
    font-family: serif;
}

.about-philosophy-visual {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.about-philosophy-image:hover {
    transform: scale(1.1);
}

.about-philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 27, 35, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* ========== СЕКЦИЯ ТЕХНОЛОГИЙ ========== */
.about-technologies {
    position: relative;
    padding: 8rem 0;
    background: var(--about-black);
    overflow: hidden;
}

.about-tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/tech-pattern.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.about-tech-grid {
    position: relative;
    z-index: 2;
}

.about-tech-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-tech-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--about-text);
}

.about-tech-header h2 span {
    color: var(--about-accent);
    display: inline-block;
    position: relative;
}

.about-tech-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--about-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.about-tech-header h2 span:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.about-tech-header p {
    color: var(--about-text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-tech-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .about-tech-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-tech-cards {
        grid-template-columns: 1fr;
    }
}

.about-tech-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--about-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.about-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--about-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.about-tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--about-accent);
    box-shadow: 0 30px 60px rgba(227, 27, 35, 0.2);
}

.about-tech-card:hover::before {
    opacity: 0.1;
}

.about-tech-card-icon {
    width: 80px;
    height: 80px;
    background: var(--about-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--about-text);
    position: relative;
    overflow: hidden;
}

.about-tech-card-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    20% {
        transform: translateX(100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.about-tech-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--about-text);
    font-family: 'Clash Display', sans-serif;
}

.about-tech-card h3 small {
    font-size: 0.9rem;
    color: var(--about-accent);
    display: block;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-tech-card p {
    color: var(--about-text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.about-tech-tag {
    padding: 0.3rem 1rem;
    background: rgba(227, 27, 35, 0.1);
    border: 1px solid var(--about-border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== СЕКЦИЯ ПРОЦЕССА ========== */
.about-process {
    position: relative;
    padding: 8rem 0;
    background: var(--about-dark);
}

.about-process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-process-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--about-text);
    margin-bottom: 1rem;
}

.about-process-header h2 span {
    color: var(--about-accent);
}

.about-process-header p {
    color: var(--about-text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.about-process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--about-accent), transparent);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .about-process-line {
        left: 30px;
    }
}

.about-process-step {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .about-process-step,
    .about-process-step:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
}

.about-process-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--about-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.about-process-content:hover {
    border-color: var(--about-accent);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.1);
}

@media (max-width: 768px) {
    .about-process-content {
        width: 100%;
    }
}

.about-process-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--about-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--about-text);
    box-shadow: 0 0 30px var(--about-accent-glow);
}

.about-process-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--about-text);
    font-family: 'Clash Display', sans-serif;
}

.about-process-content p {
    color: var(--about-text-dim);
    line-height: 1.7;
}

.about-process-dot {
    width: 20px;
    height: 20px;
    background: var(--about-accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px var(--about-accent);
    z-index: 2;
}

@media (max-width: 768px) {
    .about-process-dot {
        left: 30px;
    }
}

/* ========== СЕКЦИЯ КОЛЛЕКЦИЙ ========== */
.about-collections {
    position: relative;
    padding: 8rem 0;
    background: var(--about-black);
    overflow: hidden;
}

.about-collections-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-collections-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--about-text);
    margin-bottom: 1rem;
}

.about-collections-header h2 span {
    color: var(--about-accent);
    font-style: italic;
}

.about-collections-header p {
    color: var(--about-text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .about-collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-collections-grid {
        grid-template-columns: 1fr;
    }
}

.about-collection-card {
    position: relative;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.about-collection-card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(227, 27, 35, 0.3);
}

.about-collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.about-collection-card:hover .about-collection-image {
    transform: scale(1.1);
}

.about-collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--about-black) 0%, transparent 50%);
    z-index: 1;
}

.about-collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(100px);
    transition: transform 0.5s ease;
}

.about-collection-card:hover .about-collection-content {
    transform: translateY(0);
}

.about-collection-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.5rem;
    font-family: 'Clash Display', sans-serif;
}

.about-collection-content p {
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.about-collection-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--about-accent);
    color: var(--about-text);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 0 20px var(--about-accent-glow);
}

/* ========== СЕКЦИЯ КОМАНДЫ - ПОЛНОСТЬЮ ПЕРЕРАБОТАНА ========== */
.about-team {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--about-dark) 0%, var(--about-black) 100%);
    overflow: hidden;
}

.about-team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/team-pattern.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.about-team-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.about-team-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--about-text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-team-header h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--about-accent);
}

.about-team-header h2 span {
    color: var(--about-accent);
    font-weight: 700;
}

.about-team-header p {
    color: var(--about-text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

.about-team-member {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--about-border);
    border-radius: 30px;
    padding: 2rem 2rem 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.about-team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--about-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.about-team-member:hover {
    transform: translateY(-10px);
    border-color: var(--about-accent);
    box-shadow: 0 30px 60px rgba(227, 27, 35, 0.2);
}

.about-team-member:hover::before {
    opacity: 0.1;
}

.about-member-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.about-member-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--about-accent);
    box-shadow: 0 0 30px var(--about-accent-glow);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.about-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-team-member:hover .about-member-image img {
    transform: scale(1.1);
}

.about-member-social {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.about-team-member:hover .about-member-social {
    opacity: 1;
    bottom: 0;
}

.about-member-social a {
    width: 35px;
    height: 35px;
    background: var(--about-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-text);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--about-accent);
}

.about-member-social a:hover {
    background: transparent;
    color: var(--about-accent);
    transform: translateY(-3px);
}

.about-team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.5rem;
    font-family: 'Clash Display', sans-serif;
    position: relative;
    display: inline-block;
}

.about-team-member h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--about-accent);
    transition: width 0.3s ease;
}

.about-team-member:hover h3::after {
    width: 50%;
}

.about-team-member .about-member-position {
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.about-team-member .about-member-bio {
    color: var(--about-text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0;
    padding: 0 1rem;
}

.about-team-member .about-member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.about-team-member .about-member-tag {
    padding: 0.2rem 0.8rem;
    background: rgba(227, 27, 35, 0.1);
    border: 1px solid var(--about-border);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== CTA СЕКЦИЯ ========== */
.about-cta {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--about-black) 0%, var(--about-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/cta-pattern.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--about-text);
    margin-bottom: 1.5rem;
}

.about-cta-content h2 span {
    color: var(--about-accent);
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
}

.about-cta-content p {
    color: var(--about-text-dim);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--about-accent);
    color: var(--about-text);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--about-accent);
    position: relative;
    overflow: hidden;
}

.about-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-cta-button:hover {
    background: transparent;
    color: var(--about-accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.3);
}

.about-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* ========== АДАПТИВНОСТЬ ДЛЯ ТАЧ-УСТРОЙСТВ ========== */
@media (hover: none) and (pointer: coarse) {
    .about-tech-card:hover,
    .about-collection-card:hover,
    .about-team-member:hover {
        transform: none;
    }

    .about-tech-card:active {
        transform: scale(0.98);
        background: rgba(227, 27, 35, 0.1);
    }

    .about-collection-card .about-collection-content {
        transform: translateY(0);
        background: linear-gradient(to top, var(--about-black) 0%, transparent 100%);
    }

    .about-process-step {
        opacity: 1;
        transform: translateY(0);
    }

    .about-team-member .about-member-social {
        opacity: 1;
        bottom: 0;
    }
}

/* Улучшения для тач-таргетов */
@media (max-width: 768px) {
    .about-tech-card,
    .about-collection-card,
    .about-team-member,
    .about-cta-button {
        cursor: pointer;
        min-height: 44px;
    }

    .about-tech-card {
        padding: 2rem 1.5rem;
    }

    .about-process-content {
        padding: 1.5rem;
    }

    .about-process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -10px;
        left: -10px;
    }

    .about-team-member {
        padding: 2rem 1.5rem;
    }

    .about-member-image-wrapper {
        width: 150px;
        height: 150px;
    }
}



/* ========== SEASON SOON - ИННОВАЦИОННАЯ КОНЦЕПЦИЯ ========== */
.season-soon-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--about-black) 0%, #1a0a0a 100%);
    overflow: hidden;
    border-top: 1px solid rgba(227, 27, 35, 0.2);
    border-bottom: 1px solid rgba(227, 27, 35, 0.2);
}

.season-soon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.season-soon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(227, 27, 35, 0.1) 0px, transparent 50px),
        radial-gradient(circle at 80% 70%, rgba(227, 27, 35, 0.1) 0px, transparent 100px),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0px, transparent 80px);
    animation: seasonParticles 20s ease-in-out infinite;
}

@keyframes seasonParticles {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.season-soon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(227, 27, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 27, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(10deg);
    transform-origin: center;
    opacity: 0.3;
}

.season-soon-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 992px) {
    .season-soon-container {
        padding: 0 2rem;
    }
}

.season-soon-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .season-soon-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.season-soon-left {
    animation: fadeInLeft 1s ease;
}

.season-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(227, 27, 35, 0.1);
    border: 1px solid var(--about-accent);
    border-radius: 100px;
    color: var(--about-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.season-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.3), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.season-soon-title {
    margin-bottom: 2rem;
}

.season-soon-title-line {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--about-text);
}

.season-soon-title-line:nth-child(2) {
    color: var(--about-accent);
    font-size: clamp(3rem, 7vw, 5rem);
    text-shadow: 0 0 30px var(--about-accent-glow);
    margin: 0.5rem 0;
}

.season-soon-title-line-small {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--about-text-dim);
    margin-top: 1rem;
    letter-spacing: 2px;
}

.season-soon-description {
    color: var(--about-text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (max-width: 992px) {
    .season-soon-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.season-soon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .season-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.season-soon-feature {
    text-align: left;
}

@media (max-width: 992px) {
    .season-soon-feature {
        text-align: center;
    }
}

.season-soon-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 27, 35, 0.1);
    border: 1px solid var(--about-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--about-accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.season-soon-feature:hover .season-soon-feature-icon {
    background: var(--about-accent);
    color: var(--about-text);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--about-accent-glow);
}

@media (max-width: 992px) {
    .season-soon-feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

.season-soon-feature h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.5rem;
}

.season-soon-feature p {
    color: var(--about-text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.season-soon-right {
    position: relative;
}

.season-soon-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(227, 27, 35, 0.3);
    border-radius: 40px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.season-soon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(227, 27, 35, 0.1),
        transparent
    );
    animation: cardGlow 8s linear infinite;
}

@keyframes cardGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.season-soon-card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.season-soon-card-header h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--about-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--about-accent-glow);
}

.season-soon-card-header p {
    color: var(--about-text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.season-soon-card-content {
    position: relative;
    z-index: 2;
}

.season-soon-card-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(227, 27, 35, 0.2);
}

.season-soon-card-item:last-child {
    border-bottom: none;
}

.season-soon-card-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(227, 27, 35, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-accent);
    font-size: 1.2rem;
}

.season-soon-card-item-content {
    flex: 1;
}

.season-soon-card-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.25rem;
}

.season-soon-card-item-content p {
    color: var(--about-text-dim);
    font-size: 0.85rem;
}

.season-soon-card-item-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(227, 27, 35, 0.2);
    border: 1px solid var(--about-accent);
    border-radius: 100px;
    color: var(--about-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== УЛУЧШЕННАЯ КНОПКА SEASON SOON ========== */
.season-soon-button-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.season-soon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--about-accent) 0%, #ff4d4d 100%);
    color: var(--about-text);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px var(--about-accent-glow);
    z-index: 2;
}

.season-soon-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.8s, height 0.8s;
    z-index: -1;
}

.season-soon-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px var(--about-accent-glow);
}

.season-soon-button:hover::before {
    width: 400px;
    height: 400px;
}

.season-soon-button:active {
    transform: translateY(0) scale(0.98);
}

.season-soon-button-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.season-soon-button:hover .season-soon-button-icon {
    transform: translateX(5px);
}

.season-soon-button-icon svg {
    width: 20px;
    height: 20px;
}

.season-soon-button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--about-accent) 0%, #ff4d4d 100%);
    border-radius: 102px;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { opacity: 0.5; filter: blur(10px); }
    50% { opacity: 0.8; filter: blur(15px); }
}

.season-soon-button-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.season-soon-button-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--about-accent);
    border-radius: 50%;
    animation: buttonParticle 2s ease-out infinite;
}

@keyframes buttonParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, 50px)) scale(0);
        opacity: 0;
    }
}

/* ========== ПРЕВЬЮ СЕЗОНА ========== */
.season-preview {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(227, 27, 35, 0.2);
    border-radius: 30px;
}

.season-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.season-preview-header h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    color: var(--about-text);
}

.season-preview-header span {
    color: var(--about-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.season-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.season-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.season-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.season-preview-item:hover img {
    transform: scale(1.1);
}

.season-preview-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(227, 27, 35, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.season-preview-item:hover .season-preview-item-overlay {
    opacity: 1;
}

.season-preview-item-overlay span {
    color: var(--about-text);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Адаптивность */
@media (max-width: 768px) {
    .season-soon-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .season-preview-grid {
        grid-template-columns: 1fr;
    }
}



/* Дополнение к portal-button.css */

.portal-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #e31b23 0%, #ff4d4d 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(227, 27, 35, 0.3);
    z-index: 2;
}

.portal-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(227, 27, 35, 0.5) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.portal-button:hover::before {
    width: 400px;
    height: 400px;
    opacity: 0.5;
}

.portal-button.clicked {
    animation: buttonAbsorb 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.portal-button:hover + .portal-ring,
.portal-ring:hover {
    width: 300px;
    height: 300px;
    opacity: 1;
    border-width: 3px;
    border-color: #e31b23;
    box-shadow: 0 0 30px rgba(227, 27, 35, 0.5);
    animation: rotateRing 4s linear infinite;
}

.portal-button.clicked + .portal-ring {
    animation: ringAbsorb 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.portal-ring-secondary {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    pointer-events: none;
    z-index: 1;
}

.portal-button:hover + .portal-ring + .portal-ring-secondary,
.portal-ring-secondary:hover {
    width: 350px;
    height: 350px;
    opacity: 0.5;
    border-width: 2px;
    border-color: #ff4d4d;
    animation: rotateRingReverse 6s linear infinite;
}

.portal-button.clicked + .portal-ring + .portal-ring-secondary {
    animation: ringAbsorb 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

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

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

@keyframes buttonAbsorb {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    20% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(0.8) rotate(-5deg);
        opacity: 0.7;
    }
    80% {
        transform: scale(0.3) rotate(10deg);
        opacity: 0.3;
    }
    100% {
        transform: scale(0) rotate(20deg);
        opacity: 0;
    }
}

@keyframes ringAbsorb {
    0% {
        width: 300px;
        height: 300px;
        opacity: 1;
        border-width: 3px;
    }
    50% {
        width: 500px;
        height: 500px;
        opacity: 0.8;
        border-width: 1px;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
        border-width: 0;
    }
}

.portal-button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #e31b23 0%, #ff4d4d 100%);
    border-radius: 102px;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { opacity: 0.5; filter: blur(10px); }
    50% { opacity: 0.8; filter: blur(15px); }
}

.portal-button-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.screen-distortion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(227, 27, 35, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screen-distortion.active {
    opacity: 1;
    animation: distort 0.8s ease-out;
}

@keyframes distort {
    0% {
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
    20% {
        transform: scale(1.1) rotate(2deg);
        filter: blur(5px);
    }
    50% {
        transform: scale(0.95) rotate(-2deg);
        filter: blur(10px);
    }
    80% {
        transform: scale(1.05) rotate(1deg);
        filter: blur(5px);
    }
    100% {
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
}

.distortion-wave {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
}

.distortion-wave.active {
    animation: waveExpand 0.8s ease-out forwards;
}

@keyframes waveExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 2000px;
        height: 2000px;
        opacity: 0;
    }
}