* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(13, 13, 13, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) rgba(13, 13, 13, 0.5);
}

canvas, .grid, .vignette, .pixels {
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.pixels {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    background-size: 4px 4px;
    margin: 0;
    padding: 0;
}

.grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 
        50px 50px,
        50px 50px;
    background-position: 
        center center,
        center center;
    z-index: 0;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 20%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    margin: 0;
    padding: 0;
    display: block;
}

.main-content {
    position: relative;
    min-height: 100vh;
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    opacity: 1;
}

.content-section {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    text-align: center;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.section-title::before {
    content: '//';
    color: rgba(255, 255, 255, 0.4);
    margin-right: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.05);
}

.card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.card-description {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.card-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.scroll-indicator.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.scroll-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    animation: bounceArrow 2s ease-in-out infinite;
    position: relative;
}


@keyframes bounceArrow {
    0%, 100% {
        top: 0;
    }
    50% {
        top: 8px;
    }
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-content {
        padding: 30px 20px;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .content-section {
        padding: 60px 20px 40px 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-text {
        font-size: 0.7rem;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}

.title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 5.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    user-select: none;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.24),
        0 0 20px rgba(255, 255, 255, 0.16),
        0 0 30px rgba(255, 255, 255, 0.08);
}

.title::before,
.title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: white;
}

.title::before {
    clip: rect(0, 9999px, 0, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
    opacity: 0;
    text-shadow: -2px 0 rgba(255, 255, 255, 0.8);
}

.title::after {
    clip: rect(0, 9999px, 0, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    opacity: 0;
    text-shadow: 2px 0 rgba(255, 255, 255, 0.8);
}

.title.active::before,
.title.active::after {
    opacity: 1;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(18px, 9999px, 83px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(65px, 9999px, 32px, 0); }
    50% { clip: rect(15px, 9999px, 75px, 0); }
    55% { clip: rect(46px, 9999px, 45px, 0); }
    60% { clip: rect(82px, 9999px, 54px, 0); }
    65% { clip: rect(38px, 9999px, 21px, 0); }
    70% { clip: rect(58px, 9999px, 36px, 0); }
    75% { clip: rect(29px, 9999px, 67px, 0); }
    80% { clip: rect(52px, 9999px, 40px, 0); }
    85% { clip: rect(71px, 9999px, 14px, 0); }
    90% { clip: rect(23px, 9999px, 88px, 0); }
    95% { clip: rect(61px, 9999px, 52px, 0); }
    100% { clip: rect(76px, 9999px, 24px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(25px, 9999px, 60px, 0); }
    20% { clip: rect(36px, 9999px, 46px, 0); }
    25% { clip: rect(88px, 9999px, 98px, 0); }
    30% { clip: rect(41px, 9999px, 68px, 0); }
    35% { clip: rect(54px, 9999px, 27px, 0); }
    40% { clip: rect(15px, 9999px, 90px, 0); }
    45% { clip: rect(72px, 9999px, 35px, 0); }
    50% { clip: rect(10px, 9999px, 50px, 0); }
    55% { clip: rect(91px, 9999px, 61px, 0); }
    60% { clip: rect(33px, 9999px, 78px, 0); }
    65% { clip: rect(48px, 9999px, 42px, 0); }
    70% { clip: rect(59px, 9999px, 88px, 0); }
    75% { clip: rect(21px, 9999px, 56px, 0); }
    80% { clip: rect(70px, 9999px, 30px, 0); }
    85% { clip: rect(44px, 9999px, 64px, 0); }
    90% { clip: rect(16px, 9999px, 95px, 0); }
    95% { clip: rect(82px, 9999px, 47px, 0); }
    100% { clip: rect(37px, 9999px, 72px, 0); }
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 2.5rem 0;
    opacity: 0.5;
}

.telegram-link {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    user-select: none;
    cursor: pointer;
}

.telegram-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.telegram-link:hover::before {
    left: 100%;
}

.telegram-link:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.telegram-link span {
    position: relative;
    z-index: 1;
}

.corner {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    will-change: transform;
    backface-visibility: hidden;
}

.corner-tl {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 30px;
    right: 30px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 30px;
    left: 30px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
}


@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }

    .corner {
        width: 40px;
        height: 40px;
    }

    .corner-tl, .corner-tr {
        top: 20px;
    }

    .corner-bl, .corner-br {
        bottom: 20px;
    }

    .corner-tl, .corner-bl {
        left: 20px;
    }

    .corner-tr, .corner-br {
        right: 20px;
    }

    .telegram-link {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .loader-logo {
        font-size: 2rem;
    }

    .loader-text {
        font-size: 1.1rem;
        letter-spacing: 0.4em;
    }

    .loader-corner {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.8rem;
    }

    .telegram-link {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    .cursor-blink {
        height: 2rem;
        width: 2px;
    }

    .loader-logo {
        font-size: 1.5rem;
    }

    .loader-text {
        font-size: 0.9rem;
        letter-spacing: 0.3em;
        margin-top: 20px;
    }

    .loader-bars {
        margin-top: 20px;
    }

    .loader-bar {
        height: 25px;
    }
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0d0d0d;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.loader-wrapper.fade-out-text .loader-content {
    opacity: 0;
}

.loader-wrapper.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loader-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    position: relative;
    user-select: none;
}

.loader-logo::before,
.loader-logo::after {
    content: 'sythera.dev';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.loader-logo::before {
    color: #ff0040;
    animation: loaderGlitch1 3s infinite;
}

.loader-logo::after {
    color: #00ffff;
    animation: loaderGlitch2 3s infinite;
}

@keyframes loaderGlitch1 {
    0%, 95%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    96% {
        transform: translate(-3px, -2px);
        opacity: 0.8;
    }
    97% {
        transform: translate(5px, 1px);
        opacity: 0.7;
    }
    98% {
        transform: translate(-2px, 3px);
        opacity: 0.8;
    }
    99% {
        transform: translate(4px, -2px);
        opacity: 0.7;
    }
}

@keyframes loaderGlitch2 {
    0%, 95%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    96% {
        transform: translate(3px, 2px);
        opacity: 0.8;
    }
    97% {
        transform: translate(-4px, -1px);
        opacity: 0.7;
    }
    98% {
        transform: translate(2px, -3px);
        opacity: 0.8;
    }
    99% {
        transform: translate(-3px, 2px);
        opacity: 0.7;
    }
}

.loader-text {
    margin-top: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    animation: loaderTextPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@keyframes loaderTextPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.loader-bars {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.loader-bar {
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ffffff;
    animation: barFill 1.5s ease-in-out infinite;
}

.loader-bar:nth-child(1)::after { animation-delay: 0s; }
.loader-bar:nth-child(2)::after { animation-delay: 0.1s; }
.loader-bar:nth-child(3)::after { animation-delay: 0.2s; }
.loader-bar:nth-child(4)::after { animation-delay: 0.3s; }
.loader-bar:nth-child(5)::after { animation-delay: 0.4s; }

@keyframes barFill {
    0%, 100% { height: 0%; }
    50% { height: 100%; }
}

.loader-corner {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.loader-corner-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
    animation: cornerPulse 2s ease-in-out infinite;
}

.loader-corner-tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
    animation: cornerPulse 2s ease-in-out infinite 0.5s;
}

.loader-corner-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
    animation: cornerPulse 2s ease-in-out infinite 1s;
}

.loader-corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
    animation: cornerPulse 2s ease-in-out infinite 1.5s;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.corner {
    opacity: 1;
    transition: opacity 0.15s ease;
}

.corner.hidden {
    opacity: 0;
    pointer-events: none;
}

.language-switcher {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.language-switcher.show {
    opacity: 1;
    transition: opacity 1s ease;
}

.language-switcher.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.lang-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .language-switcher {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .lang-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

.footer {
    position: relative;
    padding: 50px 0;
    background: transparent;
    z-index: 100;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-section {
    background: transparent;
    border: none;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    position: relative;
    height: 100%;
}

.footer-section:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3px;
    text-align: center;
    width: 100%;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.footer-text span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-divider {
    display: none;
}


@media (max-width: 768px) {
    .footer {
        margin-top: 0;
        padding: 35px 0 30px 0;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 1px !important;
        min-height: 1px;
        max-height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        display: block;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-section:first-of-type,
    .footer-section:nth-of-type(2),
    .footer-section:last-of-type {
        justify-self: auto;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }

    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-text {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.shape {
    position: absolute;
    opacity: 0;
    transition: transform 0.3s ease-out;
}

.shape.visible {
    opacity: 0.3;
}

.shape-ring {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.shape-square {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.shape-1 {
    top: 20%;
    left: 15%;
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 20%;
    animation: float2 10s ease-in-out infinite;
}

.shape-3 {
    top: 40%;
    right: 10%;
    animation: float3 12s ease-in-out infinite;
}

.shape-4 {
    top: 70%;
    left: 10%;
    animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -50px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -30px) rotate(270deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-30px, 20px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, -20px) rotate(240deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 40px) rotate(180deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg);
    }
    25% {
        transform: translate(-25px, -25px) rotate(135deg);
    }
    50% {
        transform: translate(-40px, 0) rotate(225deg);
    }
    75% {
        transform: translate(-25px, 25px) rotate(315deg);
    }
}

@media (max-width: 768px) {
    .shape {
        transform: scale(0.7);
    }
    
    .shape-ring {
        width: 70px;
        height: 70px;
    }
    
    .shape-triangle {
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 60px solid rgba(255, 255, 255, 0.4);
    }
    
    .shape-square {
        width: 60px;
        height: 60px;
    }
}