/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #030303;
    --bg-secondary: #09090b;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --brand-orange: #ff6b00;
    --brand-orange-light: #ff914d;
    --brand-orange-glow: rgba(255, 107, 0, 0.15);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(10, 10, 10, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-space: 'Space Grotesk', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --shadow-glow: 0 0 25px rgba(255, 107, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-inter);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

/* Typography & Layout Utility */
h1, h2, h3, h4, h5, h6, .font-space {
    font-family: var(--font-space);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(3, 3, 3, 0.85);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    border-radius: 6px;
    box-shadow: 0 0 15px var(--brand-orange-glow);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    color: #ffffff;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
    opacity: 0.95;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    z-index: 1;
}

.particles-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    color: var(--brand-orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    animation: pulseGlow 3s infinite alternate;
}

.badge svg {
    color: var(--brand-orange);
    fill: var(--brand-orange);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        padding: 0 2rem;
    }
}

/* Brands Ticker */
.ticker-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.6;
    transition: var(--transition);
}

.ticker-wrap:hover {
    opacity: 0.9;
}

.ticker {
    display: inline-flex;
    gap: 4rem;
    animation: tickerMove 25s linear infinite;
}

.ticker-item {
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.ticker-item:hover {
    color: var(--brand-orange-light);
    transform: scale(1.1);
}

/* Glassmorphism Cards System */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.glass-panel:hover::before {
    transform: translateX(100%);
}

.glass-panel:hover {
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.05);
    transform: translateY(-5px);
}

/* Section Standard Layout */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-orange-light);
    transition: var(--transition);
}

.feature-card:hover .card-icon {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    transform: scale(1.1) rotate(3deg);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tabs & Mock Screens Section */
.built-section {
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 11, 0.4) 100%);
}

.built-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .built-container {
        grid-template-columns: 1fr;
    }
}

.built-features {
    display: flex;
    flex-col: column;
    gap: 1.5rem;
}

.feature-item-pill {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.feature-item-pill.active, .feature-item-pill:hover {
    background: rgba(255, 107, 0, 0.04);
    border-color: rgba(255, 107, 0, 0.3);
}

.feature-item-pill h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-item-pill p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-pill-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--brand-orange);
    background: rgba(255, 107, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    font-weight: 600;
}

/* Feature Image Graphic Mock */
.built-visual {
    position: relative;
}

.built-visual-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--brand-orange);
    filter: blur(120px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mock-terminal-screen {
    background: #09090b;
    border: 1px solid #1c1c1e;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/11;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #121214;
    height: 36px;
    border-bottom: 1px solid #1c1c1e;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.4rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27272a;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.terminal-title {
    margin-left: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: monospace;
}

.terminal-content {
    flex: 1;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 1rem;
}

.terminal-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.terminal-chart {
    flex: 1;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.terminal-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 60%;
    stroke: var(--brand-orange);
    stroke-width: 2;
    fill: none;
}

.terminal-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.terminal-btn {
    padding: 0.5rem;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: monospace;
    font-size: 0.7rem;
    text-align: center;
}

.terminal-btn.active {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(255, 107, 0, 0.05);
}

/* Chains Grid Section */
.chains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.chain-card {
    text-align: center;
    padding: 2rem;
}

.chain-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--brand-orange);
    border: 1px solid rgba(255, 107, 0, 0.15);
    transition: var(--transition);
}

.chain-card:hover .chain-icon-wrap {
    background: rgba(255, 107, 0, 0.25);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px var(--brand-orange-glow);
}

.chain-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.chain-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-space);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--brand-orange-light);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-content p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--brand-orange);
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.05);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--brand-orange-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-orange-light);
}

/* TERMINAL MODAL POPUP STYLES */
.terminal-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.terminal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(12px);
}

.terminal-modal-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 100%;
    max-height: 600px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 16px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 107, 0, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.terminal-modal.active .terminal-modal-container {
    transform: scale(1);
}

.close-terminal-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-terminal-btn:hover {
    color: var(--brand-orange-light);
    transform: rotate(90deg);
}

.terminal-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .terminal-body {
        grid-template-columns: 1fr;
    }
    .terminal-chart-container {
        height: 200px;
    }
}

.terminal-chart-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.terminal-chart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-chart-badge {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: monospace;
}

.terminal-chart-badge.green {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.terminal-chart-canvas-wrap {
    flex: 1;
    background: #030303;
    border: 1px solid #18181b;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.terminal-chart-canvas-wrap canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.terminal-actions-panel {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0d0d11;
}

.terminal-panel-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.terminal-panel-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.chain-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.chain-select-btn {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chain-select-btn.active, .chain-select-btn:hover {
    border-color: var(--brand-orange);
    color: var(--text-primary);
    background: rgba(255, 107, 0, 0.06);
}

.terminal-input-wrap {
    background: #030303;
    border: 1px solid #27272a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.terminal-input-wrap:focus-within {
    border-color: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
}

.terminal-input-wrap input {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    width: 60%;
    outline: none;
    font-family: monospace;
}

.terminal-input-currency {
    font-family: var(--font-space);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brand-orange-light);
}

.terminal-quick-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-val-btn {
    background: none;
    border: 1px solid #18181b;
    color: var(--text-secondary);
    padding: 0.3rem;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    font-family: monospace;
    transition: var(--transition);
}

.quick-val-btn:hover {
    border-color: var(--border-glow);
    color: var(--text-primary);
}

.terminal-swap-btn {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    border: none;
    color: #ffffff;
    padding: 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.terminal-swap-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 0 35px rgba(255, 107, 0, 0.45);
}

.terminal-status-logs {
    background: #030303;
    border: 1px solid #18181b;
    border-radius: 6px;
    padding: 0.75rem;
    height: 100px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.75rem;
    color: #10b981;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* NOTIFICATIONS SYSTEM */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-space);
}

/* Keyframes animations */
@keyframes pulseGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.05);
        border-color: rgba(255, 107, 0, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
        border-color: rgba(255, 107, 0, 0.5);
    }
}

@keyframes tickerMove {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
