/* ===================================
   MODERN TRADING THEME - LANDING PAGE
   =================================== */

/* === RESET & BASE === */
html {
    scroll-behavior: smooth;
}

/* Global Font Inheritance Reset */
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

:root {
    /* --- Font & Typography --- */
    --primary-font-family: 'Poppins', sans-serif;

    /* --- Trading Colors (Constant) --- */
    --trading-green: #1ac374;
    --trading-red: #ff4757;
    --glow-green: rgba(0, 255, 136, 0.3);
    --glow-red: rgba(255, 71, 87, 0.3);

    /* --- Theme Variables: DARK (Default) --- */
    --dark-bg: #36373f;
    /* Основной фон страницы */
    --darker-bg: #343438;
    /* Темный фон для контраста */
    --card-bg: rgb(55 55 55 / 36%);
    /* Универсальный полупрозрачный фон */
    --text-primary: #9f9f9f;
    /* Главный текст */
    --text-secondary: #a0a0b8;
    /* Второстепенный текст */
    --text-dim: #6b6b7f;
    /* Приглушенный текст */

    /* Global Elements */
    --chart-bg-top: #323339;
    /* Верхний градиент фона */
    --grid-line-color: rgba(255, 255, 255, 0.02);
    --grid-opacity: 0.3;
    /* Прозрачность сетки */
    --header-footer-bg: rgb(57 57 57 / 20%);
    --header-footer-blur: 2px;

    /* Pricing Section */
    --pricing-card-bg: radial-gradient(circle, rgb(60 60 60 / 0%) 0%, rgb(71 71 71 / 34%) 100%);
    /* Фон карточки тарифа */
    --pricing-card-shadow: rgba(0, 0, 0, 0.4);
    --pricing-card-shadow-hover: rgba(0, 0, 0, 0.6);
    --pricing-curve-fill: #3f4048;
    /* Цвет волн (должен совпадать с фоном карточки) */
    --pricing-title-color: #ffffff;
    --pricing-list-border: transparent;
    --pricing-check-color: var(--trading-green);
    --pricing-notch-btn-bg: var(--plan-color);
    --pricing-notch-btn-icon: #ffffff;

    /* Auth & Modals */
    --modal-overlay-bg: rgba(0, 0, 0, 0.2);
}

html[data-theme='light'] {
    /* --- Theme Variables: LIGHT --- */
    --dark-bg: #f5f7fa;
    --darker-bg: #ffffff;
    --card-bg: rgba(255, 243, 221, 0.335);
    --text-primary: #707277;
    --text-secondary: #4a5568;
    --text-dim: #718096;

    /* Global Elements */
    --chart-bg-top: #fff7e6;
    --grid-line-color: rgba(0, 0, 0, 0.03);
    --grid-opacity: 0.5;
    --header-footer-bg: rgb(187 187 187 / 9%);

    /* Pricing Section */
    --pricing-card-bg: radial-gradient(circle, rgb(246 250 255 / 0%) 0%, rgb(227 255 241 / 80%) 100%);
    --pricing-card-shadow: rgba(0, 0, 0, 0.1);
    --pricing-card-shadow-hover: rgba(0, 0, 0, 0.15);
    --pricing-curve-fill: #f0f2f5;
    --pricing-title-color: #333333;
    --pricing-list-border: rgba(0, 0, 0, 0.1);
    --pricing-check-color: #00ce61;
}

body {
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: var(--primary-font-family);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* === ANIMATED CHART BACKGROUND === */
.chart-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at top, var(--chart-bg-top) 0%, var(--darker-bg) 100%);
    overflow: hidden;
}

/* Canvas is styled inline or inherits size */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: var(--grid-opacity);
    pointer-events: none;
    /* Ensure clicks pass through */
}

@keyframes drawLine {

    0%,
    100% {
        stroke-dashoffset: 2000;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    90% {
        opacity: 1;
    }
}

/* Global grid styling consolidated using variables */

/* === HEADER === */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-footer-bg);
    backdrop-filter: blur(var(--header-footer-blur));
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin-bottom: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.logo-area:hover {
    transform: translateY(-2px);
    color: var(--trading-green);
}

.logo-area .iconify {
    font-size: 1.8rem;
    color: var(--trading-green);
    filter: drop-shadow(0 0 10px var(--glow-green));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--trading-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--trading-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

#theme-toggle-btn {
    background: transparent;
    border: none;
    padding: 0.7rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#theme-toggle-btn:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
    color: var(--text-primary);
    /* Keep color simple or allow slight change if needed, but user said "no effects" */
}

#theme-toggle-btn .iconify {
    font-size: 1.5rem;
    /* Increased slightly for visibility since border is gone */
    color: var(--text-secondary);
    /* Default color */
}

/* Override nav link styles for profile trigger to remove underlines */
.user-profile-trigger-landing {
    text-decoration: none !important;
}

.user-profile-trigger-landing::after {
    display: none !important;
}

.landing-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    /* Removed green border */
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-avatar:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.landing-avatar .iconify {
    font-size: 1.8rem;
    /* Slightly larger icon */
    color: var(--text-secondary);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--glow-green);
    }

    50% {
        box-shadow: 0 0 20px var(--glow-green);
    }
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--trading-green) 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--trading-green);
    font-weight: 600;
}



/* === HERO STATS === */
.hero-stats {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--grid-line-color);
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--trading-green);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Pricing section structure handled in the PREMIUM block at the end */

/* Structure handled in consolidated block */

/* SVG Wave Curve */
.curve-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

/* Gentle Wave Animation - Unique Paths via Scale & Speed */
.wave-layer-1 {
    fill: var(--pricing-curve-fill);
    opacity: 0.3;
    animation: move-curve-1 7s linear infinite !important;
    animation-delay: -2s !important;
}

.wave-layer-2 {
    fill: var(--pricing-curve-fill);
    opacity: 0.2;
    animation: move-curve-2 11s linear infinite !important;
    animation-delay: -3s !important;
}

.wave-layer-3 {
    fill: var(--pricing-curve-fill);
    opacity: 0.1;
    animation: move-curve-3 13s linear infinite !important;
    animation-delay: -4s !important;
}

.wave-layer-4 {
    fill: var(--pricing-curve-fill);
    opacity: 0.2;
    animation: move-curve-4 19s linear infinite !important;
    animation-delay: -5s !important;
}

/* Desynchronize waves between cards (Chaos effect) */
.pricing-table:nth-of-type(2) .wave-layer-1 {
    animation-delay: -9s !important;
}

.pricing-table:nth-of-type(2) .wave-layer-2 {
    animation-delay: -13s !important;
}

.pricing-table:nth-of-type(2) .wave-layer-3 {
    animation-delay: -7s !important;
}

.pricing-table:nth-of-type(2) .wave-layer-4 {
    animation-delay: -11s !important;
}

.pricing-table:nth-of-type(3) .wave-layer-1 {
    animation-delay: -15s !important;
}

.pricing-table:nth-of-type(3) .wave-layer-2 {
    animation-delay: -6s !important;
}

.pricing-table:nth-of-type(3) .wave-layer-3 {
    animation-delay: -19s !important;
}

.pricing-table:nth-of-type(3) .wave-layer-4 {
    animation-delay: -8s !important;
}

.pricing-table:nth-of-type(4) .wave-layer-1 {
    animation-delay: -4s !important;
}

.pricing-table:nth-of-type(4) .wave-layer-2 {
    animation-delay: -18s !important;
}

.pricing-table:nth-of-type(4) .wave-layer-3 {
    animation-delay: -12s !important;
}

.pricing-table:nth-of-type(4) .wave-layer-4 {
    animation-delay: -22s !important;
}

/* Unique Keyframes with ScaleY */
@keyframes move-curve-1 {
    0% {
        transform: translate3d(-90px, 0, 0) scaleY(1.0);
    }

    50% {
        transform: translate3d(0, 0, 0) scaleY(1.0);
    }

    100% {
        transform: translate3d(85px, 0, 0) scaleY(1.0);
    }
}

@keyframes move-curve-2 {
    0% {
        transform: translate3d(-90px, 0, 0) scaleY(0.8);
    }

    50% {
        transform: translate3d(0, 0, 0) scaleY(0.8);
    }

    100% {
        transform: translate3d(85px, 0, 0) scaleY(0.8);
    }
}

@keyframes move-curve-3 {
    0% {
        transform: translate3d(-90px, 0, 0) scaleY(1.3);
    }

    50% {
        transform: translate3d(0, 0, 0) scaleY(1.3);
    }

    100% {
        transform: translate3d(85px, 0, 0) scaleY(1.3);
    }
}

@keyframes move-curve-4 {
    0% {
        transform: translate3d(-90px, 0, 0) scaleY(1.1);
    }

    50% {
        transform: translate3d(0, 0, 0) scaleY(1.1);
    }

    100% {
        transform: translate3d(85px, 0, 0) scaleY(1.1);
    }
}

/* Theme consistency is now handled via variables in :root and [data-theme='light'] */

/* Compact Price Value (Amount in center) */
.price-value {
    color: var(--pricing-title-color);
}

.price-value {
    padding: 0 0.5rem 1rem;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.8rem;
}

/* Title styles moved to PRICING TABLE block */

.price-value .amount {
    font-size: 1.6rem;
    /* Reduced from 2.5rem */
    font-weight: 800;
    color: var(--plan-color);
}

.price-value .month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-content {
    padding: 0.3rem 1rem 1rem;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
    /* Allows the list to be centered as a block */
    width: fit-content;
}

.pricing-content ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed var(--pricing-list-border);
    transition: color 0.3s ease;
}

.pricing-content ul li:hover {
    color: var(--text-primary);
}

.pricing-content ul li .iconify {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-content ul li .iconify.check {
    color: var(--trading-green);
}

.pricing-content ul li.disable {
    opacity: 0.4;
    filter: grayscale(1);
}

.pricing-content ul li .iconify.check {
    color: var(--pricing-check-color);
}

.pricing-content ul li .iconify.disable {
    color: var(--trading-red);
}

.pricing-footer {
    padding: 0 0 20px;
}

.pricing-btn {
    display: inline-block;
    padding: 6px 20px;
    background: var(--plan-color);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    font-family: var(--primary-font-family);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.pricing-btn:hover {
    background: transparent;
    color: var(--plan-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: 2px solid var(--plan-color);
}

.bottom-bar {
    height: 10px;
    background: var(--plan-color);
    width: 100%;
}

/* ==============================================
   PRICING TABLE - PREMIUM CONSOLIDATED SECTION
   ============================================== */

/* 1. Grid Container */
.pricing-grid {
    position: relative;
    z-index: 1;
    padding: 1rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* 2. Table Component */
.pricing-table {
    width: 280px;
    flex: 0 0 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent !important;
    /* Must be transparent to let ::before show masked background */
    border-radius: 12px;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: visible;
}

/* Invisible hit area extension to prevent hover jitter when the card moves up */
.pricing-table::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px;
    /* Buffer taller than the 12px offset */
    z-index: -1;
    pointer-events: auto;
}

.pricing-table:hover {
    transform: translateY(-12px);
    /* filter/shadow omitted by user request, using bg contrast instead */
}

/* 3. Masked Background (Apple Style Notch) */
.pricing-table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pricing-card-bg);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;

    -webkit-mask-image:
        linear-gradient(black, black),
        linear-gradient(black, black),
        url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H140V15C140 55 120 55 90 60A40 40 0 0 0 60 90C55 120 55 140 15 140H0V0Z' fill='black'/%3E%3C/svg%3E");
    mask-image:
        linear-gradient(black, black),
        linear-gradient(black, black),
        url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H140V15C140 80 120 55 90 60A40 40 0 0 0 60 90C55 120 80 140 15 140H0V0Z' fill='black'/%3E%3C/svg%3E");

    -webkit-mask-position: 0 0, 0 0, 100% 100%;
    mask-position: 0 0, 0 0, 100% 100%;

    -webkit-mask-size: 100% calc(100% - 139px), calc(100% - 139px) 100%, 140px 140px;
    mask-size: 100% calc(100% - 139px), calc(100% - 139px) 100%, 140px 140px;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* 4. Header & Waves */
.pricing-header-curve {
    height: 80px;
    background: var(--plan-color);
    position: relative;
    padding-top: 25px;
    z-index: 2;
}

.curve-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
}

.icon-container {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    /* Squircular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.pricing-table:hover .icon-container {
    transform: scale(1.1);
    border-color: var(--plan-color);
}

.icon-container .iconify {
    font-size: 1.5rem;
    color: var(--plan-color);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-table:hover .icon-container .iconify {
    transform: rotate(360deg);
}

/* Зона контента */
.pricing-content {
    min-height: 170px;
    padding: 1.5rem;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
}

.price-value {
    position: relative;
    z-index: 2;
}

/* Кнопка - Правый нижний угол (центрирована в вырезе) */
.pricing-notch-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 55px;
    height: 55px;
    background: var(--plan-color);
    /* border-radius: 27px 5px 20px 5px / 27px 5px 20px 5px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-notch-btn:hover {
    transform: scale(1.1) rotate(-3deg);
    filter: brightness(0.9);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

/* .pricing-notch-btn:hover .iconify {
    color: var(--plan-color);
} */

.pricing-notch-btn .iconify {
    color: white;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

/* === PRICING VISIBILITY TOGGLE === */
.pricing-grid.pricing-hidden {
    display: none !important;
}

.pricing-grid.active {
    display: flex !important;
    animation: fadeInUp 0.5s ease-out;
}

/* === FOOTER === */
footer {
    position: relative;
    z-index: 1;
    background: var(--header-footer-bg);
    backdrop-filter: blur(var(--header-footer-blur));
    padding: 1.5rem 2rem;
    margin-top: auto;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Footer theme handled via variables */

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        margin-top: 2rem;
    }

    .stat-item {
        flex: 1;
    }

    .stat-value {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 25px;
        background: rgba(255, 255, 255, 0.1);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        padding: 1rem 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


/* === AUTH MODAL REFINED ANIMATION === */
.auth-overlay {
    background: var(--modal-overlay-bg);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    display: flex; /* Always flex to allow transition from 0 opacity */
    opacity: 0;
    pointer-events: none;
}

.auth-overlay.active {
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(var(--header-footer-blur));
    -webkit-backdrop-filter: blur(var(--header-footer-blur));
}

/* === ANIMATED BUTTON STYLES === */
.button-container {
    display: inline-block;
    position: relative;
    min-width: 200px;
    height: 50px;
    margin: 0 10px;
}

.button-container svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Стили для анимированных SVG-кнопок */
.Button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px !important;
    /* Фиксированный размер шрифта для всех кнопок */
    font-family: var(--primary-font-family), 'Roboto', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
    height: 50px;
}

#animated-main-btn .Button {
    background: linear-gradient(135deg, var(--trading-green) 0%, #00d4ff 100%);
    color: #000;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

#animated-secondary-btn .Button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.Button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.5);
}