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

:root {
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --neon-green: #00ff41;
    --neon-purple: #b026ff;
    --poison-purple: #8b00ff;
    --text-gray: #00ff00;
    --text-dim: #00cc33;
    --glow-green: 0 0 10px rgba(0, 255, 65, 0.5),
                  0 0 20px rgba(0, 255, 65, 0.3),
                  0 0 30px rgba(0, 255, 65, 0.2);
    --glow-purple: 0 0 10px rgba(176, 38, 255, 0.5),
                   0 0 20px rgba(176, 38, 255, 0.3),
                   0 0 30px rgba(176, 38, 255, 0.2);
}

body {
    font-family: 'Courier New', Courier, monospace;
    background: var(--bg-black);
    color: var(--neon-green);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 17px;
}

.terminal {
    position: relative;
    min-height: 100vh;
    background: var(--bg-black);
}

/* Scanlines эффект */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 65, 0.03) 50%
    );
    background-size: 100% 4px;
    z-index: 1000;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Noise эффект */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 999;
}

/* Header */
.header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}


.logo-wrapper {
    flex-shrink: 0;
}

.logo-image {
    position: relative;
}

.logo-image svg {
    display: block;
}

.logo-text {
    animation: glitch 2s infinite;
}

.logo-text-sub {
    animation: glitch 2.5s infinite;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
        opacity: 1;
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 0.8;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 0.9;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 0.85;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 0.9;
    }
    90% {
        transform: translate(0);
        opacity: 0.7;
    }
}

.logo-subtitle {
    font-size: 1rem;
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
    letter-spacing: 4px;
    margin-top: 5px;
}

.nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 8px 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    border-color: var(--neon-green);
}

/* Main content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 80px;
}

.login-button {
    display: inline-block;
    margin-top: 40px;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-black);
    background: var(--neon-green);
    text-decoration: none;
    letter-spacing: 3px;
    border: 2px solid var(--neon-green);
    box-shadow: var(--glow-green);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
}

.login-button:hover {
    background: transparent;
    color: var(--neon-green);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
}

.terminal-prompt {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prompt-text {
    color: var(--neon-green);
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--neon-green);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.glitch-text {
    display: inline-block;
    position: relative;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    margin: 0 10px;
}

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

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-purple);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 var(--poison-purple);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    5% { clip: rect(54px, 9999px, 11px, 0); }
    10% { clip: rect(12px, 9999px, 14px, 0); }
    15% { clip: rect(33px, 9999px, 99px, 0); }
    20% { clip: rect(88px, 9999px, 2px, 0); }
    25% { clip: rect(9px, 9999px, 98px, 0); }
    30% { clip: rect(3px, 9999px, 94px, 0); }
    35% { clip: rect(67px, 9999px, 11px, 0); }
    40% { clip: rect(12px, 9999px, 14px, 0); }
    45% { clip: rect(33px, 9999px, 99px, 0); }
    50% { clip: rect(88px, 9999px, 2px, 0); }
    55% { clip: rect(9px, 9999px, 98px, 0); }
    60% { clip: rect(3px, 9999px, 94px, 0); }
    65% { clip: rect(67px, 9999px, 11px, 0); }
    70% { clip: rect(12px, 9999px, 14px, 0); }
    75% { clip: rect(33px, 9999px, 99px, 0); }
    80% { clip: rect(88px, 9999px, 2px, 0); }
    85% { clip: rect(9px, 9999px, 98px, 0); }
    90% { clip: rect(3px, 9999px, 94px, 0); }
    95% { clip: rect(67px, 9999px, 11px, 0); }
    100% { clip: rect(12px, 9999px, 14px, 0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    min-width: 150px;
}

.stat-value {
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

/* Sections */
.section {
    margin-bottom: 80px;
    padding: 40px 20px;
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    background: rgba(0, 0, 0, 0.5);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--neon-green);
}

.section-number {
    color: var(--neon-purple);
    font-size: 1.2rem;
    text-shadow: var(--glow-purple);
}

.section-title {
    font-size: 1.8rem;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    letter-spacing: 3px;
}

.content-box {
    padding: 20px;
}

.terminal-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dim);
    white-space: pre-line;
}

.terminal-text .success {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

.description {
    margin-top: 20px;
    font-size: 1.18rem;
    line-height: 2;
    color: var(--text-gray);
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.25);
}

.important-note {
    border-left: 4px solid var(--neon-purple);
    background: rgba(176, 38, 255, 0.08);
    padding: 18px 20px;
    margin-top: 30px;
}

.important-label {
    color: var(--neon-purple);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 8px;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    padding: 30px;
    border: 1px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.8);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-purple);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Ticker (бегущая строка) */
.ticker-container {
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    background: rgba(0, 0, 0, 0.5);
    height: 80px;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    width: fit-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 60px;
    padding: 0 30px;
    align-items: center;
    height: 80px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 0 20px;
    border-right: 1px solid rgba(0, 255, 65, 0.3);
}

.ticker-symbol {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    min-width: 60px;
}

.ticker-name {
    color: var(--text-dim);
    font-size: 1rem;
    min-width: 100px;
}

.ticker-price {
    color: var(--neon-purple);
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 120px;
    text-shadow: var(--glow-purple);
}

.ticker-change {
    font-size: 0.9rem;
    min-width: 80px;
}

.ticker-change.positive {
    color: var(--neon-green);
}

.ticker-change.negative {
    color: #ff0040;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Registration section */
.registration-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    padding: 30px;
    border: 1px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    background: rgba(0, 0, 0, 0.3);
}

.info-title {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.85;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.registration-steps {
    margin-top: 40px;
}

.steps-title {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-item {
    padding: 25px;
    border: 1px solid var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.step-number {
    font-size: 2.5rem;
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
    margin-bottom: 15px;
    font-weight: bold;
}

.step-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Deposits section */
.deposit-instruction,
.deposit-limits,
.network-comparison {
    margin-bottom: 40px;
}

.subsection-title {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: var(--glow-green);
}

.instruction-steps {
    padding: 20px;
    border: 1px solid var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.instruction-step:last-child {
    border-bottom: none;
}

.step-marker {
    color: var(--neon-green);
    font-weight: bold;
    flex-shrink: 0;
}

.limits-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    display: block;
}

.limit-row,
.comparison-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    min-width: 600px;
}

.limit-row:last-child,
.comparison-row:last-child {
    border-bottom: none;
}

.header-row {
    background: rgba(0, 255, 65, 0.1);
    font-weight: bold;
}

.limit-cell,
.comparison-cell {
    padding: 15px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    border-right: 1px solid rgba(0, 255, 65, 0.2);
}

.limit-cell:last-child,
.comparison-cell:last-child {
    border-right: none;
}

.header-row .limit-cell,
.header-row .comparison-cell {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

/* Withdrawals section */
.withdrawal-info {
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    padding: 25px;
    border: 1px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    background: rgba(0, 0, 0, 0.3);
}

.info-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-top: 15px;
}

.highlight {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    font-weight: bold;
}

.errors-section {
    margin-bottom: 40px;
}

.errors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.error-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
    align-items: flex-start;
}

.error-code {
    flex-shrink: 0;
    padding: 5px 15px;
    background: rgba(255, 0, 64, 0.2);
    border: 1px solid #ff0040;
    color: #ff0040;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.error-content {
    flex: 1;
}

.error-content strong {
    color: var(--neon-green);
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.error-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.kyc-section {
    margin-top: 40px;
    padding: 30px;
    border: 2px solid var(--neon-green);
    box-shadow: var(--glow-green);
    background: rgba(0, 255, 65, 0.05);
}

.kyc-answer {
    margin-top: 20px;
}

.kyc-text {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
}

/* Loyalty section */
.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.loyalty-card {
    padding: 35px;
    border: 1px solid var(--neon-purple);
    box-shadow: var(--glow-purple);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.loyalty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.8);
}

.loyalty-title {
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.loyalty-subtitle {
    font-size: 1rem;
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.loyalty-content {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

.loyalty-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.loyalty-list li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.85;
    border-bottom: 1px solid rgba(176, 38, 255, 0.2);
}

.loyalty-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(176, 38, 255, 0.1);
    border-left: 3px solid var(--neon-purple);
    color: var(--text-dim);
}

.loyalty-note strong {
    color: var(--neon-green);
}

/* Contact section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    padding: 30px;
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-title {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-text {
    color: var(--text-dim);
    font-size: 1rem;
    word-break: break-word;
}

.contact-text a {
    color: var(--neon-purple);
    text-decoration: none;
    text-shadow: var(--glow-purple);
    font-weight: bold;
}

.contact-text a:hover {
    color: #d48cff;
}

/* FAQ section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--glow-green);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    color: var(--neon-green);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    user-select: none;
}

.faq-icon {
    color: var(--neon-purple);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px 20px 50px;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 50px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Terminal window */
.terminal-window {
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    background: var(--bg-dark);
    margin-top: 20px;
}

.terminal-header {
    padding: 10px 15px;
    border-bottom: 1px solid var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
}

.terminal-title {
    color: var(--neon-green);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.terminal-body {
    padding: 20px;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 10px;
    line-height: 1.6;
}

.terminal-line .prompt {
    color: var(--neon-green);
}

.terminal-line .command {
    color: var(--text-dim);
}

.terminal-line .output {
    color: var(--text-dim);
    margin-left: 20px;
}

.terminal-line .output.success {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

/* Footer */
.footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
    margin-top: 80px;
    position: relative;
    z-index: 100;
}

.footer-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.status-indicator {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    animation: pulse 2s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo-wrapper {
        margin-bottom: 15px;
    }

    .logo-image svg {
        width: 100px;
        height: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        min-width: 120px;
        padding: 15px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .login-button {
        padding: 15px 40px;
        font-size: 1.2rem;
    }

    .nav {
        gap: 8px;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .section-title {
        font-size: 1.4rem;
    }

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

    .registration-info {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .loyalty-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table,
    .limits-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-row,
    .limit-row {
        grid-template-columns: repeat(4, minmax(140px, 1fr));
        min-width: 560px;
    }

    .limit-cell,
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    }

    .limit-cell:last-child,
    .comparison-cell:last-child {
        border-bottom: none;
    }

    .ticker-item {
        gap: 10px;
        padding: 0 15px;
    }

    .ticker-symbol {
        font-size: 1.2rem;
        min-width: 50px;
    }

    .ticker-name {
        font-size: 0.9rem;
        min-width: 80px;
    }

    .ticker-price {
        font-size: 1rem;
        min-width: 100px;
    }

    .main {
        padding: 20px 15px;
    }

    .hero {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .logo-image svg {
        width: 80px;
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .glitch-text {
        display: block;
        margin: 10px 0;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .login-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .ticker-container {
        height: 60px;
    }

    .ticker-content {
        height: 60px;
        gap: 40px;
    }

    .ticker-item {
        gap: 8px;
        padding: 0 10px;
    }

    .ticker-symbol {
        font-size: 1rem;
        min-width: 40px;
    }

    .ticker-name {
        font-size: 0.8rem;
        min-width: 60px;
    }

    .ticker-price {
        font-size: 0.9rem;
        min-width: 80px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer {
        padding: 0 15px 15px 40px;
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px 40px;
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

