@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-dark: #000000;
    --bg-panel: #111111;
    --accent-red: #FF003C;
    --accent-red-glow: #FF2A55;
    --discord-blue: #5865F2;
    --lolka-purple: #B026FF;
    --text-main: #FFFFFF;
    --text-bright: #FFFFFF;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --glass-bg: #2b2d31;
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: #FFFFFF;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background image layer with hardware acceleration to prevent scroll jank */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/bg-labs.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}


/* Ambient glow background (Reduced opacity to complement the background image) */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.03) 0%, rgba(11, 12, 16, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.02) 0%, rgba(11, 12, 16, 0) 70%);
    z-index: -1;
    pointer-events: none;
}
/* Overlay for readability */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);

    z-index: -1;
    pointer-events: none;
}

/* Cursor Blob */
.blob-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.25) 0%, rgba(176, 38, 255, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease-out;
    filter: blur(40px);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;

    z-index: 100;
    background: rgba(43, 45, 49, 0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}

.logo span {
    color: #5865F2;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent-red-glow);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.btn-primary:hover {
    background: var(--accent-red-glow);
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.7);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-bright);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-discord:hover {
    background: #4752C4;
}

.btn-lolka {
    background: #B026FF;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-lolka:hover {
    background: #8b1ecc;
}

.btn-dashboard-cta {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-bright);
    border: 1px solid rgba(255, 0, 60, 0.3);
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-dashboard-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 60, 0.6);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 60, 0.1);
    border: 1px solid rgba(255, 0, 60, 0.3);
    color: var(--accent-red);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-red);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--accent-red), var(--lolka-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    color: #FFFFFF;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual / Chat Simulator */
.hero-visual {
    position: relative;
    height: 400px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-visual::before {
    content: "DYNAMIC LABS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: 0;
}

.chat-container {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
    overflow: hidden;
}

.message {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0a0a0a;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.message-content {
    display: flex;
    flex-direction: column;
}

.message-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.message-name {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.95rem;
}

.message-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: bold;
}

.badge-discord {
    background: rgba(88, 101, 242, 0.2);
    color: #8ea1e1;
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.badge-lolka {
    background: rgba(176, 38, 255, 0.2);
    color: var(--lolka-purple);
    border: 1px solid rgba(176, 38, 255, 0.4);
}

.message-text {
    font-size: 0.95rem;
    color: #FFFFFF;
}

/* Chat Animation Delay */
.msg-1 { animation-delay: 0.5s; }
.msg-2 { animation-delay: 2s; }
.msg-3 { animation-delay: 3.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Metrics & Tech Grid */
.metrics {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, rgba(11,12,16,1) 0%, rgba(31,40,51,0.3) 50%, rgba(11,12,16,1) 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.metric-card {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    
    
    color: #FFFFFF;
}

/* Bots Showcase */
.bots-showcase {
    padding: 4rem 0;
}

/* Single full-width bot card (Phase 1: only DynamicBridge) */
.bot-card-single {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.bot-card-single:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bot-card-single .bot-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    
}

.bot-card-single .bot-card-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.bot-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #000;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bot-title h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.bot-tagline {
    color: #FFFFFF;
    font-size: 1rem;
}

.bot-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.bot-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-bright);
    
    font-size: 0.95rem;
}

.bot-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-family: var(--font-mono);
}

.bot-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
    
}

/* Features - Bento Box */
.features {
    padding: 4rem 0 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #FFFFFF;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,0,60,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
    
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    
}

.bento-card p {
    font-size: 0.9rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    
}

.bento-wide {
    grid-column: span 2;
}

/* Terminal Section */
.terminal-section {
    padding: 8rem 0;
}

.terminal-container {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.terminal-header {
    background: #1a1b22;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.terminal-tabs {
    display: flex;
    gap: 1rem;
}

.terminal-tab {
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.terminal-tab:hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.05);
}

.terminal-tab.active {
    color: var(--accent-red);
    background: rgba(255, 0, 60, 0.1);
}

.terminal-body {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 350px;
}

.terminal-sidebar {
    background: #111111;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.cmd-list {
    list-style: none;
}

.cmd-item {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #FFFFFF;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;

    color: #DDDDDD;
}

.cmd-item:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-bright);
}

.cmd-item.active {
    background: rgba(255, 0, 60, 0.05);
    color: var(--accent-red);
    border-left-color: var(--accent-red);

    color: #FFFFFF;
    background: rgba(255,255,255,0.08);
    border-left-color: #5865F2;
}

.terminal-content {
    padding: 2rem;
}

.cmd-details {
    display: none;
}

.cmd-details.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.cmd-title {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.cmd-desc {
    margin-bottom: 2rem;

    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cmd-example {
    background: #0B0C10;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #a5d6ff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cmd-example .prompt {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

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

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    background: #08090b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand .logo {
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-links a {
    color: #FFFFFF;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27C93F;
    border-radius: 50%;
    box-shadow: 0 0 10px #27C93F;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 12, 16, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    background: #2b2d31;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.modal-overlay.active .modal-window {
    background: #2b2d31;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-red);
}

.modal-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-bright);
}

.modal-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.modal-body h4 {
    color: var(--text-bright);
    margin: 1.2rem 0 0.5rem 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.status-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item-title {
    font-size: 0.85rem;
    color: #FFFFFF;
}

.status-item-val {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #27C93F;
    margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-wide {
        grid-column: span 1;
    }

    .bot-card-single .bot-card-body {
        grid-template-columns: 1fr;
    }

    .bot-features {
        grid-template-columns: 1fr;
    }

    .bot-actions {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: unset;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal-body {
        grid-template-columns: 1fr;
    }
    
    .terminal-sidebar {
    background: #111111;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}
    
    .cmd-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    
    color: #DDDDDD;
}
    
    .cmd-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent-red);
    
    color: #FFFFFF;
    background: rgba(255,255,255,0.08);
    border-left-color: #5865F2;
}
    
    nav ul {
        display: none;
    }

    .header-actions .btn-outline {
        display: none;
    }
}

/* Custom Scrollbar for Modal and Page */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(11, 12, 16, 0.5); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 60, 0.4); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 60, 0.7); 
}

/* Explicit Modal Scrollbar */
.modal-window {
    background: #2b2d31;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.modal-window::-webkit-scrollbar {
    width: 6px;
}

.modal-window::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 8px;
}

.modal-window::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 60, 0.5); 
    border-radius: 8px;
}

.modal-window::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 60, 0.8); 
}

.footer-right div {
    white-space: nowrap;
}
