:root {
    --neon-pink: #d12eb0;
    --neon-pink-glow: rgba(209, 46, 176, 0.6);
    --deep-bg: #0d040d;
}

html {
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-bg);
    color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

* {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.discord-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 166, 255, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
}

.discord-button:hover::after {
    animation: shine 0.7s ease-in-out;
    opacity: 1;
}

.telegram-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
}

.telegram-button:hover::after {
    animation: shine 0.7s ease-in-out;
    opacity: 1;
}

.email-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 46, 176, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
}

.email-button:hover::after {
    animation: shine 0.7s ease-in-out;
    opacity: 1;
}

.age-verification-content {
    background: linear-gradient(135deg, rgba(20, 10, 20, 0.98) 0%, rgba(13, 4, 13, 0.98) 100%);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(209, 46, 176, 0.3), 0 0 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-verification-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.age-verification-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-pink);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-verification-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.age-verification-subtitle {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.age-verification-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(209, 46, 176, 0.08);
    border: 1px solid rgba(209, 46, 176, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.age-verification-checkbox:hover {
    background: rgba(209, 46, 176, 0.12);
    border-color: rgba(209, 46, 176, 0.3);
}

@media (max-width: 768px) {
    .age-verification-checkbox {
        transition: all 0.2s ease;
    }
    
    .age-verification-checkbox:hover {
        background: rgba(209, 46, 176, 0.1);
        border-color: rgba(209, 46, 176, 0.25);
    }
}

@media (max-width: 480px) {
    .age-verification-checkbox:hover {
        background: rgba(209, 46, 176, 0.08);
        border-color: rgba(209, 46, 176, 0.2);
    }
}

.age-verification-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid rgba(209, 46, 176, 0.4);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.age-verification-checkbox input[type="checkbox"]:hover {
    border-color: var(--neon-pink);
}

.age-verification-checkbox input[type="checkbox"]:checked {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(209, 46, 176, 0.4);
}

.age-verification-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    pointer-events: none;
}

.age-verification-checkbox span {
    font-size: 0.75rem;
    color: #808080;
    line-height: 1.4;
    font-weight: 500;
}

.age-btn-agree,
.age-btn-decline {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-agree {
    background: linear-gradient(135deg, var(--neon-pink) 0%, #ff69b4 100%);
    color: white;
    box-shadow: 0 0 20px rgba(209, 46, 176, 0.4);
}

.age-btn-agree:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(209, 46, 176, 0.6);
}

.age-btn-agree:active:not(:disabled) {
    transform: translateY(0);
}

.age-btn-agree:disabled {
    background: linear-gradient(135deg, #666666 0%, #555555 100%);
    color: #999999;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.6;
}

.age-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.age-btn-decline:active {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .age-verification-modal {
        padding: 20px;
    }

    .age-verification-content {
        padding: 25px;
        border-radius: 16px;
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .age-verification-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .age-verification-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .age-verification-text {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .age-verification-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .age-verification-modal {
        padding: 10px;
    }

    .age-verification-content {
        padding: 20px;
        border: 1.5px solid var(--neon-pink);
    }

    .age-verification-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .age-verification-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .age-verification-text {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .age-verification-subtitle {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .age-verification-buttons {
        gap: 10px;
        margin-bottom: 15px;
    }

    .age-btn-agree,
    .age-btn-decline {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 10px;
        letter-spacing: 0.5px;
    }

    .age-verification-checkbox {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 6px;
    }

    .age-verification-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
    }

    .age-verification-checkbox span {
        font-size: 0.7rem;
    }
}

.hero-visual {
    position: absolute;
    inset: 0;
    background: url('https://furryrp.ru/img/preview2.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(1.2px) brightness(0.3) saturate(1.2);
    transform: scale(1.1) translateZ(0);
    z-index: 0;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .hero-visual {
        background-attachment: scroll;
        background-size: cover;
        min-height: 100vh;
        filter: blur(6px) brightness(0.3) saturate(1.2);
    }
}

@media (max-width: 480px) {
    .hero-visual {
        background-attachment: scroll;
        background-size: cover;
        min-height: 100vh;
        filter: blur(3px) brightness(0.25) saturate(1.3);
        transform: scale(1.02);
        will-change: auto;
        backface-visibility: hidden;
    }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.15));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.25;
}

@media (max-width: 768px) {
    .scanlines {
        opacity: 0.15;
        background-size: 100% 6px;
    }
}

@media (max-width: 480px) {
    .scanlines {
        opacity: 0.1;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
}

@media (max-width: 480px) {
    .noise-overlay {
        opacity: 0.01;
    }
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatUp linear infinite;
    pointer-events: none;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@media (max-width: 480px) {
    .particle {
        animation: floatUp linear infinite;
        opacity: 0.6;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    @keyframes floatUp {
        0% {
            transform: translateY(100vh);
            opacity: 0;
        }
        20% {
            opacity: 0.6;
        }
        100% {
            transform: translateY(-10vh);
            opacity: 0;
        }
    }
}

.responsive-title {
    font-size: clamp(2rem, 8vw, 7.5rem);
    line-height: 0.9;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
}

@media (max-width: 480px) {
    .responsive-title {
        font-size: clamp(1.5rem, 7vw, 3rem);
        gap: 0.05em;
    }
}

.glitch-wrapper {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: normal;
    overflow: visible;
    padding: 0;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.glitch-wrapper:hover {
    animation: glitch-anim 0.4s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: var(--neon-pink);
    text-shadow: 2px 2px var(--neon-pink), -2px -2px #00ffff, 0 0 30px var(--neon-pink-glow);
    filter: drop-shadow(0 0 20px var(--neon-pink));
}

@media (max-width: 768px) {
    .glitch-wrapper:hover {
        animation: none;
        color: var(--neon-pink);
        text-shadow: 0 0 15px var(--neon-pink-glow);
        filter: drop-shadow(0 0 10px var(--neon-pink));
    }
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes neon-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--neon-pink)) drop-shadow(0 0 20px var(--neon-pink-glow));
    }
    50% {
        filter: drop-shadow(0 0 20px var(--neon-pink)) drop-shadow(0 0 40px var(--neon-pink-glow));
    }
}

.btn-primary {
    background: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink-glow);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: inherit;
    color: white;
    will-change: box-shadow, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary:hover {
    box-shadow: 0 0 40px var(--neon-pink), 0 0 60px var(--neon-pink-glow);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .btn-primary:hover {
        box-shadow: 0 0 25px var(--neon-pink), 0 0 40px var(--neon-pink-glow);
        transform: translateY(-2px);
    }
    
    .btn-primary:active {
        transform: scale(0.97);
    }
}

@media (max-width: 480px) {
    .btn-primary:hover {
        box-shadow: 0 0 15px var(--neon-pink);
        transform: translateY(-1px);
    }
}

.btn-secondary {
    border: 2px solid rgba(209, 46, 176, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--neon-pink);
    background: rgba(209, 46, 176, 0.1) !important;
    box-shadow: 0 0 20px rgba(209, 46, 176, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-secondary:hover {
        box-shadow: 0 0 15px rgba(209, 46, 176, 0.2);
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .btn-secondary:hover {
        box-shadow: 0 0 10px rgba(209, 46, 176, 0.15);
        transform: translateY(0);
    }
}

@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    @keyframes slideUpIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.glass-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.4) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(209,46,176,0.04);
    transition: transform 0.35s ease, box-shadow 0.62s cubic-bezier(.2,.9,.2,1), border-color 0.3s ease;
    animation: slideUpIn 0.6s ease-out;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.glass-card:not(.gallery-container)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(60% 60% at 30% 30%, rgba(209,46,176,0.12), rgba(209,46,176,0.05) 40%, transparent 65%);
    opacity: 0;
    transform: scale(0.98) translateZ(0);
    transition: opacity 0.62s cubic-bezier(.2,.9,.2,1), transform 0.62s cubic-bezier(.2,.9,.2,1);
    pointer-events: none;
    z-index: 0;
    backface-visibility: hidden;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(209,46,176,0.12), inset 0 0 30px rgba(209,46,176,0.04);
    border-color: rgba(209, 46, 176, 0.2);
}

.glass-card:not(.gallery-container):hover::after {
    opacity: 1;
    transform: scale(1);
}

.glass-card:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .glass-card {
        animation: slideUpIn 0.5s ease-out;
    }
    
    .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(209, 46, 176, 0.1);
        border-color: rgba(209, 46, 176, 0.15);
    }
}

@media (max-width: 480px) {
    .glass-card {
        animation: slideUpIn 0.4s ease-out;
    }
    
    .glass-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(209, 46, 176, 0.08);
    }
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg) translateX(-100%) translateZ(0);
    transition: transform 0.9s cubic-bezier(.2,.9,.2,1), opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

.feature-card:hover::before {
    transform: skewX(-20deg) translateX(160%);
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-card::before { display: none; }
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 0 0.1em;
    white-space: normal;
    overflow: visible;
    min-width: 100%;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation: gradient-shift 3s linear infinite;
    text-shadow: 0 0 10px rgba(209, 46, 176, 0.4), 0 0 20px rgba(209, 46, 176, 0.2);
}

@keyframes gradient-shift {
    0%, 100% {
        text-shadow: 0 0 10px var(--neon-pink-glow), 0 0 20px rgba(209, 46, 176, 0.4);
    }
    50% {
        text-shadow: 0 0 15px var(--neon-pink-glow), 0 0 30px rgba(209, 46, 176, 0.6);
    }
}

@media (max-width: 768px) {
    @keyframes gradient-shift {
        0%, 100% {
            text-shadow: 0 0 8px var(--neon-pink-glow), 0 0 15px rgba(209, 46, 176, 0.3);
        }
        50% {
            text-shadow: 0 0 12px var(--neon-pink-glow), 0 0 20px rgba(209, 46, 176, 0.5);
        }
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: rgba(209, 46, 176, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%) scale(0.8);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5), 0 0 30px rgba(209, 46, 176, 0.3);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s, transform 0.3s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

#toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
    transform: translateX(-50%) scale(1);
}



@media (max-width: 768px) {
    .glass-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 16px;
    }

    .glass-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .glass-card p {
        font-size: 12px;
    }
}

.animate-ping {
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

h1, h2, h3 {
    position: relative;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation: subtle-glow 2s linear infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(209, 46, 176, 0.3), 0 0 40px rgba(209, 46, 176, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(209, 46, 176, 0.5), 0 0 60px rgba(209, 46, 176, 0.2);
    }
}

@media (max-width: 768px) {
    h1, h2, h3 {
        animation: none;
        text-shadow: 0 0 15px rgba(209, 46, 176, 0.3);
        will-change: auto;
    }
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 1024px) {
    .gallery-container {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }
}

.gallery-container::before,
.gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #0d040d, transparent);
    z-index: 15;
    pointer-events: none;
}

.gallery-container::after {
    right: 0;
    background: linear-gradient(to left, #0d040d, transparent);
}

@media (max-width: 768px) {
    .gallery-container::before,
    .gallery-container::after {
        width: 0;
        background: none;
    }
}

@media (max-width: 480px) {
    .gallery-container::before,
    .gallery-container::after {
        width: 0;
        background: none;
    }
}

.gallery-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
}

@media (max-width: 768px) {
    .gallery-slider {
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        transition: transform 0.4s ease-out;
    }
}

.gallery-item {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.2), rgba(255, 105, 180, 0.1));
    border: 2px solid rgba(209, 46, 176, 0.4);
    border-radius: 15px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .gallery-item {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    .gallery-container::before,
    .gallery-container::after {
        width: 40px;
        background: linear-gradient(to right, #0d040d, rgba(13, 4, 13, 0.3));
    }
    .gallery-container::after {
        background: linear-gradient(to left, #0d040d, rgba(13, 4, 13, 0.3));
    }
}

@media (max-width: 480px) {
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
    .gallery-container::before,
    .gallery-container::after {
        width: 40px;
        background: linear-gradient(to right, #0d040d 0%, rgba(13, 4, 13, 0.4) 70%, transparent 100%);
    }
    .gallery-container::before {
        left: 0;
    }
    .gallery-container::after {
        right: 0;
        background: linear-gradient(to left, #0d040d 0%, rgba(13, 4, 13, 0.4) 70%, transparent 100%);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .gallery-item img {
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .gallery-item:hover img {
        transform: scale(1);
    }
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.3), rgba(255, 105, 180, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gallery-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .gallery-nav {
        bottom: 12px;
        padding: 6px 10px;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .gallery-nav {
        bottom: 10px;
        padding: 5px 8px;
        gap: 4px;
    }
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .gallery-dot {
        width: 7px;
        height: 7px;
    }
}

.gallery-dot.active {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink-glow);
    transform: scale(1.2);
}

.gallery-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
}

@media (max-width: 768px) {
    .gallery-controls {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-controls {
        top: 10px;
        right: 10px;
    }
}

.gallery-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(209, 46, 176, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 18px;
}

@media (max-width: 768px) {
    .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.gallery-btn:hover {
    background: rgba(209, 46, 176, 0.4);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink-glow);
}

.modal-gallery {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-gallery.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideIn 0.3s ease;
    padding: 60px 20px 80px 20px;
    box-sizing: border-box;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
        padding: 50px 15px 70px 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 100vw;
        max-height: 100vh;
        padding: 40px 10px 60px 10px;
    }
}

.modal-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(209, 46, 176, 0.3);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(209, 46, 176, 0.3);
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    user-select: none;
}

.modal-nav:hover {
    background: rgba(209, 46, 176, 0.4);
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(209, 46, 176, 0.3);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.modal-close:hover {
    background: rgba(209, 46, 176, 0.4);
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(209, 46, 176, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

@media (max-width: 768px) {
    .modal-nav {
        padding: 12px 16px;
        font-size: 20px;
    }

    .modal-close {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-nav {
        padding: 8px 12px;
        font-size: 16px;
    }

    .modal-nav.modal-prev {
        left: 15px;
    }

    .modal-nav.modal-next {
        right: 15px;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }

    .modal-counter {
        font-size: 12px;
        padding: 8px 16px;
        bottom: 15px;
    }

    .modal-content {
        max-height: 80vh;
        padding: 50px 15px 70px 15px;
    }

    .modal-img {
        max-width: 95vw;
        max-height: 70vh;
    }
}

[onclick*="copyToClipboard"],
[onclick*="window.open"] {
    animation: slideUpIn 0.6s ease-out;
}

[onclick*="copyToClipboard"]:hover svg,
[onclick*="window.open"]:hover svg {
    animation: floatIcon 0.6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

[class*="status"] {
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 60px !important;
        padding-bottom: 20px !important;
        min-height: auto;
    }

    main {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .text-gradient {
        white-space: normal;
    }

    h2 {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    header {
        padding-top: 50px !important;
        padding-bottom: 15px !important;
    }

    main {
        padding: 8px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    h2 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    h3 {
        font-size: 14px !important;
    }

    p {
        font-size: 13px !important;
    }

    .px-6 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .gap-5 {
        gap: 12px !important;
    }

    .gap-6 {
        gap: 12px !important;
    }

    .gap-10 {
        gap: 12px !important;
    }

    footer {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 8px;
    }
}

#faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    transition: transform 0.25s ease;
}

.faq-question {
    font-weight: 700;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.25));
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 6px 12px rgba(209,46,176,0.03);
    transition: background 0.36s cubic-bezier(.2,.9,.2,1), transform 0.36s cubic-bezier(.2,.9,.2,1), box-shadow 0.62s cubic-bezier(.2,.9,.2,1);
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.faq-question::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(60% 60% at 30% 40%, rgba(209,46,176,0.08), rgba(209,46,176,0.04) 40%, transparent 65%);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.62s cubic-bezier(.2,.9,.2,1), transform 0.62s cubic-bezier(.2,.9,.2,1);
    pointer-events: none;
    z-index: 0;
}

.faq-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(209,46,176,0.14);
}

.faq-question:hover::after {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .faq-question {
        transition: background 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }
    
    .faq-question:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(209,46,176,0.08);
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .faq-question:hover {
        transform: none;
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-out, transform 0.3s ease-out;
    transform: translateY(-8px);
    border-left: 3px solid rgba(209,46,176,0.06);
    border-radius: 0 0 12px 12px;
    margin-left: 6px;
}

.faq-item.open .faq-answer {
    opacity: 1;
    visibility: visible;
    padding-top: 12px;
    padding-bottom: 12px;
    transform: translateY(0);
}

.faq-question .chev {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 18px;
    color: var(--neon-pink);
}

.faq-item.open .chev {
    transform: rotate(180deg);
}

@media (max-width: 480px) {
    .faq-question { padding: 12px 14px; }
    .faq-answer { font-size: 13px; }
}

.application-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.application-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.application-modal-content {
    background: rgba(13, 4, 13, 0.95) !important;
    border: 1px solid rgba(209, 46, 176, 0.3) !important;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(209, 46, 176, 0.2), inset 0 0 60px rgba(209, 46, 176, 0.05);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.application-modal-content::-webkit-scrollbar {
    display: none;
}



@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.application-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(209, 46, 176, 0.2);
}

.application-modal-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #ff69b4 0%, #d12eb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-modal-close {
    background: rgba(209, 46, 176, 0.2);
    color: #ff69b4;
    border: 1px solid rgba(209, 46, 176, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-modal-close:hover {
    background: rgba(209, 46, 176, 0.4);
    border-color: rgba(209, 46, 176, 0.6);
    transform: rotate(90deg);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(209, 46, 176, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(209, 46, 176, 0.6);
    box-shadow: 0 0 20px rgba(209, 46, 176, 0.2);
}

.form-input:hover:not(:focus) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(209, 46, 176, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}





.form-contact-unified {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1.5px solid rgba(209, 46, 176, 0.25);
    border-radius: 12px;
    padding: 2px;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    box-shadow: 0 4px 15px rgba(209, 46, 176, 0.08);
}

.form-contact-unified:focus-within {
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(209, 46, 176, 0.7);
    box-shadow: 0 6px 25px rgba(209, 46, 176, 0.3);
}



.contact-icon-svg {
    width: 18px;
    height: 18px;
}

.form-contact-input-unified {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 12px !important;
    flex: 1;
    font-size: 0.95rem;
}

.form-contact-input-unified:focus {
    outline: none !important;
}

.form-contact-input-unified::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-char-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    transition: color 0.2s ease;
}

.form-input:focus ~ .form-char-count,
.form-textarea:focus ~ .form-char-count {
    color: rgba(209, 46, 176, 0.6);
}

.form-hint {
    font-size: 0.8rem;
    color: rgba(255, 165, 0, 0.7);
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(255, 165, 0, 0.05);
    border-left: 2px solid rgba(255, 165, 0, 0.5);
    border-radius: 4px;
    font-weight: 500;
}

.form-error {
    font-size: 0.8rem;
    color: #ff6b6b;
    opacity: 0;
    transition: opacity 0.2s ease;
    height: 0;
}

.form-error.show {
    opacity: 1;
    height: auto;
}

.contact-hint {
    display: none;
    font-size: 0.78rem;
    color: #a0d995;
    background: rgba(160, 217, 149, 0.08);
    border: 1px solid rgba(160, 217, 149, 0.2);
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 6px;
    margin-bottom: 6px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.contact-hint.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#contactHintText {
    flex: 1;
    word-break: break-word;
    line-height: 1.2;
    font-size: 0.95em;
}

.contact-hint-close {
    background: none;
    border: none;
    color: #a0d995;
    cursor: pointer;
    padding: 3px;
    font-size: 1.05rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
    min-width: 28px;
    min-height: 28px;
}

.contact-hint.show .contact-hint-close {
    display: flex;
}

.contact-hint-close:hover {
    color: #fff;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .contact-hint {
        display: none !important;
        font-size: 0.75rem;
        padding: 8px 10px;
        margin-top: 8px;
        margin-bottom: 8px;
        background: rgba(160, 217, 149, 0.12);
        border: 1px solid rgba(160, 217, 149, 0.3);
        border-radius: 6px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .contact-hint.show {
        display: flex !important;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
    }

    #contactHintText {
        font-size: 0.75rem;
        line-height: 1.25;
        flex: 0 1 100%;
        word-break: break-word;
        word-wrap: break-word;
        overflow-wrap: break-word;
        color: #a0d995;
        padding-right: 34px;
    }

    .contact-hint.show #contactHintText {
        flex: 0 1 calc(100% - 40px);
    }

    .contact-hint-close {
        background: none;
        border: none;
        color: #a0d995;
        cursor: pointer;
        padding: 4px 6px;
        font-size: 1.1rem;
        display: none;
        align-items: center;
        justify-content: center;
        transition: color 0.2s ease;
        flex-shrink: 0;
        min-width: 30px;
        min-height: 30px;
        position: absolute;
        right: 8px;
        top: 6px;
    }

    .contact-hint.show .contact-hint-close {
        display: flex;
        position: static;
        margin-left: auto;
        margin-top: -18px;
    }

    .contact-hint-close:active {
        color: #fff;
    }
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(209, 46, 176, 0.1);
}

.modal-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #d12eb0 0%, #ff69b4 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(209, 46, 176, 0.3);
    padding: 10px 20px !important;
    font-weight: 600;
    border-radius: 12px;
    font-size: 0.9rem;
    height: auto;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(209, 46, 176, 0.5);
}

.modal-btn-primary:active {
    transform: translateY(0);
}

.modal-btn-cancel {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px !important;
    font-weight: 600;
    border-radius: 12px;
    font-size: 0.9rem;
    height: auto;
}

.modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.modal-btn-cancel:active {
    transform: scale(0.98);
}

.form-status {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
    height: 0;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
    min-height: 0;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
}

.form-status.show {
    opacity: 1;
    height: auto;
    padding: 16px 12px;
    min-height: 50px;
    overflow: visible;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.25);
    color: #ffffff;
    border: 1.5px solid rgba(34, 197, 94, 0.8);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.25);
    color: #ffffff;
    border: 1.5px solid rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.form-status.loading {
    background: rgba(209, 46, 176, 0.25);
    color: #ffffff;
    border: 1.5px solid rgba(209, 46, 176, 0.8);
    box-shadow: 0 0 15px rgba(209, 46, 176, 0.3);
}

.form-status-button {
    display: none;
    margin-top: 16px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #d12eb0 0%, #ff69b4 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-status-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 46, 176, 0.4);
}

.form-status-button:active {
    transform: translateY(0);
}

.form-status-button.show {
    display: block;
}

@media (max-width: 768px) {
    .application-modal-overlay {
        padding: 12px;
    }

    .application-modal-content {
        padding: 24px 20px;
        border-radius: 16px;
        max-height: calc(100vh - 24px);
        overflow: visible;
    }

    .application-modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .application-modal-header h2 {
        font-size: 1.4rem;
    }

    .application-modal-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .application-modal-overlay {
        padding: 8px;
    }

    .application-modal-content {
        padding: 20px 16px;
        border-radius: 14px;
        max-height: 90vh;
        overflow: visible;
    }

    .application-modal-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        gap: 8px;
    }

    .application-modal-header h2 {
        font-size: 1.2rem;
    }

    .application-modal-close {
        width: 32px;
        height: 32px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .form-group {
        gap: 6px;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .form-textarea {
        min-height: 80px;
        font-size: 0.85rem;
    }

    .form-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
        padding-top: 16px;
    }

    .modal-btn-primary,
    .modal-btn-cancel {
        width: 100%;
        padding: 10px 16px !important;
        font-size: 0.85rem;
    }

    .form-status {
        font-size: 0.8rem;
        padding: 12px 10px;
    }

    .form-status.show {
        padding: 12px 10px;
        min-height: 35px;
    }

    .form-status-button {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .form-contact-unified {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        padding: 6px;
    }

    .form-contact-selector {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: linear-gradient(135deg, rgba(209, 46, 176, 0.2) 0%, rgba(209, 46, 176, 0.08) 100%);
        border: 1.5px solid rgba(209, 46, 176, 0.5);
        border-radius: 10px;
        padding: 6px 12px;
        margin: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(209, 46, 176, 0.15);
        white-space: nowrap;
        overflow: visible;
    }

    .form-contact-toggle {
        font-size: 0.7rem;
        padding: 0 6px;
        width: 100%;
        min-width: max-content;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-contact-icon {
        padding: 0 4px;
        flex-shrink: 0;
    }

    .contact-icon-svg {
        width: 14px;
        height: 14px;
    }

    .form-contact-input-unified {
        font-size: 0.85rem;
        padding: 8px 10px !important;
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .gallery-item:hover img {
        transform: scale(1.03);
    }

    .gallery-container {
        border-radius: 12px;
    }

    .gallery-item {
        border-radius: 10px;
    }

    .gallery-nav {
        bottom: 8px;
        padding: 4px 6px;
        gap: 3px;
    }

    .gallery-dot {
        width: 6px;
        height: 6px;
    }

    .application-modal-content {
        padding: 16px 12px;
    }

    .form-group {
        gap: 4px;
        margin-bottom: 8px;
    }

    .form-label {
        font-size: 0.7rem;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 8px 10px;
    }

    .form-contact-unified {
        flex-direction: row;
        align-items: center;
        gap: 2px;
        padding: 4px;
        background: rgba(209, 46, 176, 0.06);
        border-radius: 10px;
    }

    .form-contact-selector {
        padding: 4px 8px;
        width: auto;
        border-radius: 8px;
        display: inline-flex;
        gap: 3px;
        white-space: nowrap;
        overflow: visible;
    }

    .form-contact-toggle {
        font-size: 0.65rem;
        padding: 0 4px;
        width: 100%;
        min-width: max-content;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-contact-icon {
        padding: 0 3px;
        display: flex;
        align-items: center;
    }

    .contact-icon-svg {
        width: 12px;
        height: 12px;
    }

    .form-contact-input-unified {
        font-size: 0.8rem;
        padding: 6px 8px !important;
    }

    .form-buttons {
        gap: 6px;
        margin-top: 12px;
    }

    .modal-btn-primary,
    .modal-btn-cancel {
        padding: 8px 12px !important;
        font-size: 0.8rem;
    }

    .form-textarea {
        min-height: 70px;
    }
}

.feature-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.feature-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.feature-modal {
    background: linear-gradient(135deg, rgba(20, 10, 20, 0.95) 0%, rgba(13, 4, 13, 0.95) 100%);
    border: 2px solid var(--neon-pink);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 40px rgba(209, 46, 176, 0.3), 0 0 80px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.feature-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(209, 46, 176, 0.2);
    border: 1px solid rgba(209, 46, 176, 0.4);
    border-radius: 8px;
    color: var(--neon-pink);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.feature-modal-close:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: rgb(255, 255, 255);
    box-shadow: 0 0 15px rgba(209, 46, 176, 0.6);
    transform: scale(1.1) rotate(90deg);
}

.feature-modal-close:active {
    transform: scale(0.95);
}

.feature-modal-content {
    color: #ffffff;
    line-height: 1.6;
}

.feature-modal-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-pink);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-modal-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: justify;
}

.feature-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-modal-content ul li {
    color: #d0d0d0;
    font-size: 0.95rem;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.feature-modal-content ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-modal-content strong {
    color: var(--neon-pink);
    font-weight: 700;
}

.feature-modal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209, 46, 176, 0.4), transparent);
    margin: 24px 0;
}

@media (max-width: 768px) {
    .feature-modal {
        padding: 30px;
        border-radius: 14px;
    }

    .feature-modal-content h3 {
        font-size: 1.5rem;
    }

    .feature-modal-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .feature-modal-overlay {
        padding: 12px;
        align-items: flex-start;
    }

    .feature-modal {
        padding: 16px;
        border-radius: 12px;
        border-width: 1.5px;
        margin-top: 60px;
    }

    .feature-modal-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        margin-right: 30px;
    }

    .feature-modal-content h4 {
        font-size: 0.95rem;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .feature-modal-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .feature-modal-content ul {
        margin: 12px 0;
    }

    .feature-modal-content ul li {
        font-size: 0.85rem;
        padding: 6px 0;
        padding-left: 18px;
        margin-bottom: 4px;
    }

    .feature-modal-content ul li:before {
        font-size: 1rem;
    }

    .feature-modal-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }

    .feature-modal-divider {
        margin: 12px 0;
    }

    .form-contact-unified {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        padding: 6px;
    }

    .form-contact-selector {
        width: auto;
        padding: 6px 10px;
        margin: 0;
        display: inline-flex;
        gap: 4px;
        white-space: nowrap;
        overflow: visible;
    }

    .form-contact-toggle {
        font-size: 0.7rem;
        padding: 0 6px;
        width: 100%;
        min-width: max-content;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-contact-icon {
        padding: 0 4px;
        flex-shrink: 0;
    }

    .contact-icon-svg {
        width: 14px;
        height: 14px;
    }

    .form-contact-input-unified {
        font-size: 0.85rem;
        padding: 8px 10px !important;
        flex: 1;
        min-width: 0;
    }

    .application-modal-content {
        padding: 20px 16px;
        border-radius: 14px;
        max-height: 90vh;
        overflow: visible;
    }

    .application-form {
        gap: 14px;
    }

    .form-group {
        gap: 4px;
    }

    .form-buttons {
        margin-top: 24px;
    }
}

.custom-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    width: auto;
    flex-shrink: 0;
}

.custom-dropdown-toggle {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.2) 0%, rgba(209, 46, 176, 0.08) 100%);
    border: 1.5px solid rgba(209, 46, 176, 0.5);
    border-radius: 10px;
    padding: 8px 12px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(209, 46, 176, 0.15);
    white-space: nowrap;
    min-width: max-content;
    position: relative;
    z-index: 11;
}

.custom-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.35) 0%, rgba(209, 46, 176, 0.15) 100%);
    border-color: rgba(209, 46, 176, 0.85);
    box-shadow: 0 6px 25px rgba(209, 46, 176, 0.3);
    transform: translateY(-2px);
}

.custom-dropdown-toggle:focus {
    outline: none;
    border-color: rgba(209, 46, 176, 1);
    box-shadow: 0 0 0 3px rgba(209, 46, 176, 0.2), 0 6px 25px rgba(209, 46, 176, 0.3);
}

.custom-dropdown-label {
    display: inline-block;
    white-space: nowrap;
}

.custom-dropdown-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(209, 46, 176, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
    stroke-width: 3;
}

.custom-dropdown-toggle:hover .custom-dropdown-chevron {
    color: rgba(209, 46, 176, 1);
}

.custom-dropdown-wrapper.open .custom-dropdown-chevron {
    transform: rotate(180deg);
    color: rgba(209, 46, 176, 1);
}

.form-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(209, 46, 176, 0.7);
    transition: color 0.2s ease;
}

.custom-dropdown-toggle:hover .form-contact-icon {
    color: rgba(209, 46, 176, 1);
}

.contact-icon-svg {
    width: 16px;
    height: 16px;
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(20, 10, 20, 0.98);
    border: 1.5px solid rgba(209, 46, 176, 0.4);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(209, 46, 176, 0.2);
    min-width: 100%;
    padding: 8px 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    max-width: max-content;
}

.custom-dropdown-wrapper.open .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.custom-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.custom-dropdown-item:hover {
    background: rgba(209, 46, 176, 0.2);
    color: #ffffff;
}

.custom-dropdown-item.active {
    background: rgba(209, 46, 176, 0.3);
    color: #ffffff;
    border-left: 3px solid rgba(209, 46, 176, 1);
    padding-left: 13px;
}

.option-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(209, 46, 176, 0.8);
    transition: color 0.2s ease;
}

.custom-dropdown-item:hover .option-icon,
.custom-dropdown-item.active .option-icon {
    color: rgba(209, 46, 176, 1);
}

.custom-dropdown-menu.closing {
    animation: dropdownClose 0.2s ease-out forwards;
}

@keyframes dropdownClose {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

@media (max-width: 768px) {
    .custom-dropdown-toggle {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .custom-dropdown-menu {
        top: calc(100% + 6px);
    }
    
    .custom-dropdown-item {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .custom-dropdown-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .custom-dropdown-menu {
        top: calc(100% + 4px);
        border-radius: 10px;
    }
    
    .custom-dropdown-item {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .contact-icon-svg {
        width: 14px;
        height: 14px;
    }
    
    .option-icon {
        width: 16px;
        height: 16px;
    }
}

.server-status-badge {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
}

.server-status-badge:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink-glow), 0 0 40px rgba(209, 46, 176, 0.3);
    transform: translateY(-2px);
    background: rgba(209, 46, 176, 0.05);
}

.server-status-badge:active {
    transform: translateY(0);
}

.erp-badge {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 46, 176, 0.3);
    background: rgba(209, 46, 176, 0.02) !important;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 20px !important;
}

.erp-badge:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(209, 46, 176, 0.4), inset 0 0 20px rgba(209, 46, 176, 0.1);
    transform: translateY(-2px);
    background: rgba(209, 46, 176, 0.08) !important;
}

.erp-badge:active {
    transform: translateY(0);
}

.erp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    overflow: hidden;
}

.erp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.erp-modal-content {
    background: linear-gradient(135deg, rgba(20, 10, 20, 0.95) 0%, rgba(13, 4, 13, 0.95) 100%);
    border: 2px solid rgba(209, 46, 176, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 550px;
    width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 40px rgba(209, 46, 176, 0.2), 0 0 80px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.erp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(209, 46, 176, 0.1);
    border: 1px solid rgba(209, 46, 176, 0.3);
    border-radius: 8px;
    color: var(--neon-pink);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
}

.erp-modal-close:hover {
    background: rgba(209, 46, 176, 0.2);
    border-color: var(--neon-pink);
    transform: rotate(90deg);
}

.erp-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(209, 46, 176, 0.2);
}

.erp-modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 1s ease infinite;
}

.erp-modal-header h2 {
    color: var(--neon-pink);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff69b4, #d12eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.erp-modal-body {
    max-height: calc(80vh - 280px);
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 8px;
    flex: 1;
}

.erp-modal-body::-webkit-scrollbar {
    width: 6px;
}

.erp-modal-body::-webkit-scrollbar-track {
    background: rgba(209, 46, 176, 0.05);
    border-radius: 10px;
}

.erp-modal-body::-webkit-scrollbar-thumb {
    background: rgba(209, 46, 176, 0.3);
    border-radius: 10px;
}

.erp-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(209, 46, 176, 0.5);
}

.erp-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(209, 46, 176, 0.1);
}

.erp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.erp-section-title {
    color: var(--neon-pink);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.erp-section-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.erp-principles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.erp-principle-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(209, 46, 176, 0.08);
    border-left: 3px solid var(--neon-pink);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.erp-principle-item:hover {
    background: rgba(209, 46, 176, 0.12);
    padding-left: 20px;
}

.erp-principle-icon {
    color: var(--neon-pink);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.erp-principle-item span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

.erp-modal-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff69b4, #d12eb0);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 0 20px rgba(209, 46, 176, 0.3);
}

.erp-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(209, 46, 176, 0.5);
}

.erp-modal-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .erp-modal-content {
        padding: 24px 18px;
        border-radius: 16px;
        max-width: 90vw;
        max-height: 85vh;
    }

    .erp-modal-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
        top: 12px;
        right: 12px;
    }

    .erp-modal-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .erp-modal-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .erp-modal-header h2 {
        font-size: 1.6rem;
    }

    .erp-section {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .erp-section-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .erp-section-text {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .erp-principle-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .erp-principle-item span:last-child {
        font-size: 0.88rem;
    }

    .erp-modal-button {
        padding: 12px 16px;
        font-size: 0.88rem;
    }

    .erp-modal-body {
        max-height: calc(85vh - 250px);
    }
}

@keyframes float-heart {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.3);
    }
}

.floating-heart {
    position: fixed;
    font-size: 4rem;
    pointer-events: none;
    z-index: 1000;
    animation: float-heart 2s ease-out forwards;
}

/* Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--neon-pink);
    background: linear-gradient(135deg, rgba(20, 10, 20, 0.9) 0%, rgba(13, 4, 13, 0.9) 100%);
    color: var(--neon-pink);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(209, 46, 176, 0.4), 0 0 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    backdrop-filter: blur(10px);
    font-size: 0;
    padding: 0;
    outline: none;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, rgba(209, 46, 176, 0.2) 0%, rgba(209, 46, 176, 0.1) 100%);
    box-shadow: 0 0 30px rgba(209, 46, 176, 0.6), 0 0 60px rgba(209, 46, 176, 0.3);
    transform: scale(1.1);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

.scroll-to-top.show {
    bottom: 30px;
    animation: scrollBtnAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-pink);
    filter: drop-shadow(0 0 8px rgba(209, 46, 176, 0.5));
}

@keyframes scrollBtnAppear {
    from {
        bottom: -60px;
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        bottom: 30px;
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBtnHide {
    from {
        bottom: 30px;
        opacity: 1;
        transform: translateY(0);
    }
    to {
        bottom: -60px;
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-to-top.hide {
    animation: scrollBtnHide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Пульсация при наведении */
@keyframes scrollPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(209, 46, 176, 0.4), 0 0 40px rgba(0, 0, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(209, 46, 176, 0.8), 0 0 70px rgba(209, 46, 176, 0.4);
    }
}

.scroll-to-top:hover svg {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: -55px;
        right: 20px;
    }

    .scroll-to-top.show {
        bottom: 20px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}#potrakhushki {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}