* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff006e;
    --secondary: #8338ec;
    --tertiary: #ff6b6b;
    --dark: #0a0a0a;
    --light: #f8f8f8;
    --glow: #ffd93d;
    --accent: #c77dff;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--light);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

body:hover .cursor-inner {
    transform: scale(1.5);
}

/* Liquid Background */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

#liquid-canvas {
    width: 100%;
    height: 100%;
}

/* Noise Texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,.1) 2px, rgba(255,255,255,.1) 4px);
}

.noise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.5;
    animation: noise 8s steps(10) infinite;
}

@keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 20%); }
    90% { transform: translate(-10%, 10%); }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    letter-spacing: 0.2em;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 2rem;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: load 2s ease-out forwards;
}

@keyframes load {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 1000;
    mix-blend-mode: difference;
}

.nav-logo {
    float: left;
    cursor: pointer;
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--light);
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-container:hover .nav-name {
    opacity: 1;
}

.nav-right {
    float: right;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.lang-link {
    color: var(--light);
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.lang-link:hover {
    opacity: 0.8;
    background: rgba(255,255,255,0.1);
}

.lang-link.active {
    opacity: 1;
    color: var(--primary);
    background: rgba(255,0,110,0.1);
}

.lang-separator {
    opacity: 0.3;
    font-size: 0.75rem;
}

.menu-toggle {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:last-child {
    bottom: 0;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem; /* Добавим отступы для безопасности */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    position: relative; /* Для правильного позиционирования дочерних элементов */
}

.title-line {
    display: flex;
    gap: 0.3em;
    align-items: baseline; /* Выравниваем по базовой линии */
    min-height: 1.2em;
    line-height: 1;
    position: relative;
}

.title-word {
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: titleReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 2.5s;
}

.title-word:nth-child(2) {
    animation-delay: 2.7s;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.glitch {
    position: relative;
    color: var(--light);
    display: inline-block;
}

/* Glitch анимации начинаются после появления слова */
.title-word.glitch {
    animation: glitch 2s infinite 3.7s, flicker 0.1s infinite alternate 3.7s;
}

@keyframes flicker {
    0% { opacity: 1; }
    100% { opacity: 0.98; }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--primary);
    z-index: -1;
    text-shadow: 2px 2px 0 rgba(255, 0, 110, 0.5);
    pointer-events: none;
    opacity: 0; /* Скрываем до анимации */
    animation: glitch-1 0.3s infinite 3.7s, fadeIn 0.1s forwards 3.7s;
}

.glitch::after {
    color: var(--secondary);
    z-index: -2;
    text-shadow: -2px -2px 0 rgba(131, 56, 236, 0.5);
    pointer-events: none;
    opacity: 0; /* Скрываем до анимации */
    animation: glitch-2 0.4s infinite 3.7s, fadeIn 0.1s forwards 3.7s;
}

@keyframes glitch {
    0%, 100% { 
        text-shadow: 0 0 0 transparent; 
    }
    25% { 
        text-shadow: 0 0 10px var(--primary), 
                     0 0 20px var(--primary),
                     0 0 30px var(--primary);
    }
    50% { 
        text-shadow: 0 0 10px var(--glow), 
                     0 0 20px var(--glow),
                     0 0 40px var(--glow);
    }
    75% {
        text-shadow: 0 0 10px var(--secondary),
                     0 0 20px var(--secondary),
                     0 0 30px var(--secondary);
    }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 3px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(4px, -3px); }
    60% { clip-path: inset(10% 0 80% 0); transform: translate(-3px, 0); }
    80% { clip-path: inset(80% 0 10% 0); transform: translate(3px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(3px, -4px); }
    40% { clip-path: inset(20% 0 50% 0); transform: translate(-3px, 4px); }
    60% { clip-path: inset(80% 0 10% 0); transform: translate(4px, 0); }
    80% { clip-path: inset(10% 0 80% 0); transform: translate(-4px, 0); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 3s;
}

.subtitle-mask {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(-20px);
    }
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.morph-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.morph-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: morph 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: -30%;
    right: -20%;
    animation-delay: 7s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--tertiary), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 3.5s;
}

.scroll-indicator span {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--light));
    margin: 1rem auto 0;
    overflow: hidden;
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    to { top: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Grid Section */
.grid-section {
    padding: 10rem 4rem;
    position: relative;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transform: perspective(1000px) rotateX(0) rotateY(0);
    transition: transform 0.6s ease;
}

.grid-item:hover {
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) scale(1.05);
}

.grid-item:nth-child(odd) {
    transform: translateY(50px);
}

.grid-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.grid-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--light), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-content p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.3;
    transition: all 0.6s ease;
}

.grid-item:nth-child(2) .grid-bg {
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
}

.grid-item:nth-child(3) .grid-bg {
    background: linear-gradient(135deg, var(--tertiary), var(--glow));
}

.grid-item:nth-child(4) .grid-bg {
    background: linear-gradient(135deg, var(--glow), var(--primary));
}

.grid-item:hover .grid-bg {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Marquee */
.marquee-section {
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(90deg, transparent, var(--primary) 50%, transparent);
    opacity: 0.1;
}

.marquee {
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    letter-spacing: 0.1em;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 2rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Showcase Section */
.showcase {
    padding: 10rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 600px;
}

.showcase-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.showcase-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    z-index: 2;
}

.showcase-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 10rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    opacity: 0.3;
}

.showcase-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.image-distortion {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--tertiary));
    transform: skew(-5deg);
    transition: transform 0.6s ease;
}

.showcase-item:nth-child(2) .image-distortion {
    background: linear-gradient(45deg, var(--secondary), var(--tertiary), var(--glow));
}

.showcase-item:nth-child(3) .image-distortion {
    background: linear-gradient(45deg, var(--tertiary), var(--glow), var(--primary));
}

.showcase-item:nth-child(4) .image-distortion {
    background: linear-gradient(45deg, var(--glow), var(--primary), var(--secondary));
}

.showcase-item:hover .image-distortion {
    transform: skew(5deg) scale(1.1);
}

.showcase-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.showcase-info p {
    font-size: 1.2rem;
    opacity: 0.7;
}

.showcase-nav {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.showcase-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.5);
    position: relative;
    overflow: hidden;
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    animation: dotProgress 5s linear;
}

@keyframes dotProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.showcase-nav button {
    width: 60px;
    height: 60px;
    border: 2px solid var(--light);
    background: transparent;
    color: var(--light);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-nav button:hover {
    background: var(--light);
    color: var(--dark);
    transform: scale(1.1);
}

/* Typography Section */
.typography-section {
    padding: 15rem 4rem;
    text-align: center;
}

.typo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.typo-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
}

.typo-line {
    display: block;
    transform: perspective(1000px) rotateY(20deg);
    transition: transform 0.6s ease;
    cursor: pointer;
}

.typo-line:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.1);
}

.typo-line.outline {
    color: transparent;
    -webkit-text-stroke: 3px var(--primary);
}

.typo-line.gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}

/* About Section */
.about-section {
    padding: 10rem 4rem;
    background: linear-gradient(135deg, rgba(131,56,236,0.1), rgba(255,0,110,0.1));
    position: relative;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.about-title .gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 10rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-title h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 4rem;
}

.contact-title .highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    color: var(--light);
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-field label {
    position: absolute;
    left: 0;
    top: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-field input:focus + label,
.form-field input:valid + label {
    top: -1rem;
    font-size: 0.9rem;
    opacity: 1;
    color: var(--primary);
}

.submit-btn {
    position: relative;
    padding: 1.5rem 3rem;
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-btn:hover .btn-bg {
    left: 0;
}

.submit-btn:hover {
    border-color: transparent;
    color: var(--light);
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s ease;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-link {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: var(--light);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.3s ease;
}

.menu-link::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: top 0.3s ease;
}

.menu-link:hover {
    transform: translateX(20px);
}

.menu-link:hover::before {
    top: 0;
}



/* Services Page Styles */
.services-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    text-align: center;
    z-index: 2;
}

.services-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--light);
}

.services-subtitle {
    font-size: 1.5rem;
    color: var(--light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.detailed-services {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255,0,110,0.05) 0%, rgba(131,56,236,0.05) 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

.service-item.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.service-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    z-index: 1;
}

.service-icon {
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: rgba(255,0,110,0.1);
    backdrop-filter: blur(10px);
}

.icon-morph {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: morph 4s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 50%; transform: rotate(0deg); }
    25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(90deg); }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: rotate(180deg); }
    75% { border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%; transform: rotate(270deg); }
}

.service-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 2rem;
    color: var(--primary);
    font-weight: 600;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-from {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.6;
}

.price-amount {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary);
}

.process-section {
    padding: 8rem 0;
    background: rgba(10,10,10,0.8);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.process-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 4rem;
    color: var(--light);
}

.gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255,0,110,0.2);
}

.step-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.step p {
    color: var(--light);
    opacity: 0.8;
    line-height: 1.6;
}

.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,0,110,0.1) 0%, rgba(131,56,236,0.1) 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.cta-button:hover {
    color: var(--dark);
    transform: scale(1.05);
}

.cta-button .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover .btn-bg {
    left: 0;
}

/* Portfolio Page Styles */
.portfolio-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero-content {
    text-align: center;
    z-index: 2;
}

.portfolio-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--light);
}

.portfolio-subtitle {
    font-size: 1.5rem;
    color: var(--light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-gallery {
    padding: 8rem 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

.portfolio-project.reverse {
    direction: rtl;
}

.portfolio-project.reverse > * {
    direction: ltr;
}

.project-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,0,110,0.1) 0%, rgba(131,56,236,0.1) 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.placeholder-content {
    text-align: center;
    color: var(--light);
}

.placeholder-icon {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.placeholder-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,0,110,0.9) 0%, rgba(131,56,236,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: var(--light);
    padding: 2rem;
}

.project-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-details {
    padding: 2rem 0;
}

.project-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.project-details h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.result {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.result:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,0,110,0.2);
}

.result-metric {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonials-section {
    padding: 8rem 0;
    background: rgba(10,10,10,0.8);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255,0,110,0.2);
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.author-info span {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--primary);
    font-size: 1.2rem;
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255,0,110,0.1) 0%, rgba(131,56,236,0.1) 100%);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,0,110,0.2);
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    color: var(--light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-number {
        font-size: 5rem;
    }
    
    .typo-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .menu-link {
        font-size: 3rem;
    }
    
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-center {
        display: none; /* Скрываем имя на мобильных */
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .language-switcher {
        font-size: 0.75rem;
    }
    
    /* Services Page Mobile */
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-visual {
        height: 200px;
    }
    
    .service-number {
        font-size: 6rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .icon-morph {
        width: 40px;
        height: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Portfolio Page Mobile */
    .portfolio-project,
    .portfolio-project.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .project-image {
        height: 300px;
    }
    
    .project-number {
        font-size: 4rem;
    }
    
    .project-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* About Page Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-image {
        height: 300px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-item {
        padding: 2rem 1rem;
    }
    
    .experience-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        margin-left: 40px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        flex: none;
        margin-bottom: 1rem;
    }
    

    
    .timeline-content {
        margin: 0;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .personal-interests {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* About Page Styles */
.about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    z-index: 2;
}

.about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--light);
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255,0,110,0.05) 0%, rgba(131,56,236,0.05) 100%);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.story-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,0,110,0.1) 0%, rgba(131,56,236,0.1) 100%);
}

.story-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 8rem 0;
    background: rgba(10,10,10,0.8);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--light);
}

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

.philosophy-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255,0,110,0.2);
}

.philosophy-icon {
    margin-bottom: 2rem;
}

.icon-shape {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--light);
    font-weight: 700;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--light);
    opacity: 0.8;
    line-height: 1.6;
}

.experience-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255,0,110,0.05) 0%, rgba(131,56,236,0.05) 100%);
}

.experience-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experience-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--light);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-timeline {
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.timeline-content {
    flex: 1;
    padding: 2rem;
    margin: 0 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--light);
    opacity: 0.8;
    line-height: 1.6;
}

.awards-section {
    padding: 8rem 0;
    background: rgba(10,10,10,0.8);
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.awards-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--light);
}

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

.award-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255,0,110,0.2);
}

.award-icon {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary);
    font-weight: 700;
}

.award-item h3 {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.award-item p {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.personal-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255,0,110,0.05) 0%, rgba(131,56,236,0.05) 100%);
}

.personal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.personal-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.personal-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.personal-interests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.interest {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.interest:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,0,110,0.2);
}

.interest-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.interest span:last-child {
    color: var(--light);
    font-size: 0.9rem;
    text-align: center;
}

 