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

:root {
    /* Color Palette - Unique Sunset Amber & Mint Teal (Non-cliché AI colors) */
    --bg-dark: hsl(220, 24%, 4%);
    --bg-card: rgba(18, 16, 15, 0.7);
    --bg-card-hover: rgba(28, 24, 22, 0.8);
    --primary: hsl(14, 90%, 55%);
    --primary-glow: rgba(249, 115, 22, 0.15);
    --secondary: hsl(42, 95%, 50%);
    --secondary-glow: rgba(234, 179, 8, 0.15);
    --accent: hsl(168, 80%, 40%) ;
    --accent-glow: rgba(13, 148, 136, 0.15);
    --text-main: hsl(0, 0%, 98%);
    --text-muted: hsl(240, 8%, 70%);
    --text-dim: hsl(240, 5%, 45%);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    --neon-blue: #14b8a6;
    --neon-purple: #f97316;
    
    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Canvas & Grid Overlay */
#p2p-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: all; /* Allows mouse interaction with canvas particles */
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.bg-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 20%, var(--bg-dark) 90%);
    z-index: 1;
    pointer-events: none;
}

.bg-gradient-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 1;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.bg-gradient-orb-2 {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    z-index: 1;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 25s infinite alternate-reverse ease-in-out;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Structural Components */
.main-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: block;
    width: 100%;
}

header {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 10, 0.4);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 100;
}

.header-content {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 20px var(--primary-glow);
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-dark);
    border-radius: 11px;
    z-index: 1;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    z-index: 2;
    fill: none;
    stroke: url(#logoGrad);
    stroke-width: 2.5;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 40%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-domain-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-btn {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero-section {
    padding: 80px 4% 60px 4%;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: block;
}

.badge-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: hsl(263, 100%, 75%);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    animation: pulseGlow 2s infinite ease-in-out;
}

.badge-coming-soon .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 12px 4px rgba(139, 92, 246, 0.1); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 auto 16px auto;
    max-width: 850px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 70%, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}



/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: var(--container-width);
    margin: 40px auto 80px auto;
    padding: 0 4%;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--card-glow, rgba(139, 92, 246, 0.03)), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover, rgba(139, 92, 246, 0.3));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--icon-color, var(--primary));
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--icon-bg-hover, rgba(139, 92, 246, 0.1));
    border-color: var(--icon-color, var(--primary));
    transform: scale(1.05);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Specific card accents */
.feat-cdn {
    --card-glow: rgba(139, 92, 246, 0.05);
    --card-border-hover: rgba(139, 92, 246, 0.3);
    --icon-color: var(--primary);
    --icon-bg-hover: rgba(139, 92, 246, 0.1);
}

.feat-p2p {
    --card-glow: rgba(6, 182, 212, 0.05);
    --card-border-hover: rgba(6, 182, 212, 0.3);
    --icon-color: var(--secondary);
    --icon-bg-hover: rgba(6, 182, 212, 0.15);
}

.feat-privacy {
    --card-glow: rgba(16, 185, 129, 0.05);
    --card-border-hover: rgba(16, 185, 129, 0.3);
    --icon-color: var(--accent);
    --icon-bg-hover: rgba(16, 185, 129, 0.1);
}

/* ==========================================
   Roadmap / Timeline Section Styles
   ========================================== */
.roadmap-section {
    max-width: var(--container-width);
    margin: 60px auto 40px auto;
    padding: 0 4%;
    width: 100%;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 50px;
}

.roadmap-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    z-index: 2;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item:hover {
    transform: translateY(-4px);
}

.timeline-badge {
    position: static;
    margin-bottom: 16px;
    padding: 6px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 3;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
    border-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px 30px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    text-align: center;
    width: 100%;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-date {
    font-size: 12px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    .timeline-item {
        margin-bottom: 30px;
    }
}

/* ==========================================
   Merge Protocol / Steps Section Styles
   ========================================== */
.merge-section {
    max-width: var(--container-width);
    margin: 80px auto 40px auto;
    padding: 0 4%;
    width: 100%;
}

.merge-header {
    text-align: center;
    margin-bottom: 50px;
}

.merge-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.merge-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.merge-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 24px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-num {
    width: 32px;
    height: 32px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
}

.step-card:hover .step-num {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px var(--primary-glow);
    border-color: var(--primary);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer Section */
footer {
    padding: 40px 4%;
    border-top: 1px solid var(--border-color);
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(8px);
    margin-top: 80px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
}

.footer-logo-small {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
    display: inline-block;
}

.footer-right {
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: #fff;
}

/* ==========================================
   Interactive Info Modal Styles
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(249, 115, 22, 0.05);
    border-radius: 24px;
    width: 92%;
    max-width: 640px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 85vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color-hover);
    transform: rotate(90deg);
}

.modal-close-btn svg {
    width: 18px;
    height: 18px;
}

/* Inner Modal Layout */
.modal-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.modal-body {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 16px;
}

.modal-body h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 16px;
    margin: 24px 0 12px 0;
    font-weight: 600;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
    padding-left: 15px;
}

.modal-body li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-highlight {
    color: var(--secondary);
    font-weight: 600;
}

/* ==========================================
   Toast Notification Styles
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: rgba(18, 16, 15, 0.95);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    border-radius: 14px;
    padding: 16px 20px;
    color: var(--text-main);
    font-size: 14px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: all;
    animation: toastSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.toast.hide {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

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

.toast-icon {
    color: var(--secondary);
    flex-shrink: 0;
}

.toast-icon svg {
    width: 22px;
    height: 22px;
}

/* ==========================================
   Visual Highlights
   ========================================== */
@keyframes highlightFlash {
    0%, 100% { border-color: var(--border-color); box-shadow: none; }
    50% { border-color: var(--primary); box-shadow: 0 0 25px var(--primary-glow); }
}

.highlight-flash {
    animation: highlightFlash 1.2s ease-in-out 2;
}

/* ==========================================
   Responsive & Device Optimization Queries
   ========================================== */

/* Tablet Portrait & Small Desktops (max-width: 992px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 52px;
        letter-spacing: -1.5px;
    }
    .hero-subtitle {
        font-size: 17px;
    }
    .merge-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile Devices & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .roadmap-header h2,
    .merge-header h2 {
        font-size: 30px;
    }
    .timeline-item {
        margin-bottom: 30px;
    }
    .timeline-content {
        padding: 20px;
    }
    .timeline-content h3 {
        font-size: 17px;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .merge-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-card {
        padding: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        padding: 24px;
    }
    .modal-content {
        padding: 30px 24px;
        width: 94%;
        border-radius: 20px;
    }
    .modal-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .modal-close-btn {
        top: 18px;
        right: 18px;
        width: 32px;
        height: 32px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .footer-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

/* Small Smart Phones (max-width: 480px) */
@media (max-width: 480px) {
    .header-content {
        padding: 0 16px;
        height: 70px;
    }
    .logo-text {
        font-size: 20px;
    }
    .logo-domain-badge {
        display: none; /* Hide domain badge on small mobile headers to save space */
    }
    .social-links {
        gap: 10px;
    }
    .social-btn {
        width: 34px;
        height: 34px;
    }
    .hero-section {
        padding: 50px 16px 40px 16px;
    }
    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    .roadmap-section,
    .merge-section {
        margin-top: 40px;
        padding: 0 16px;
    }
    .roadmap-header h2,
    .merge-header h2 {
        font-size: 24px;
    }
    .roadmap-header p,
    .merge-header p {
        font-size: 14px;
    }
    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .toast {
        min-width: unset;
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }
}

