:root {
    --bg-base: #0f0f0f;
    --bg-surface: rgba(28, 25, 23, 0.6);
    --bg-surface-hover: rgba(41, 37, 36, 0.8);
    --border-color: rgba(231, 229, 228, 0.08);
    --border-color-hover: rgba(231, 229, 228, 0.18);
    
    --primary: #ff2867;
    --primary-glow: rgba(255, 40, 103, 0.15);
    --primary-gradient: linear-gradient(135deg, #ff2867 0%, #e6007a 100%);
    
    --text-primary: #fafaf9;
    --text-secondary: #a8a29e;
    --text-muted: #78716c;
    
    --accent-green: #10b981;
    --accent-green-bg: rgba(16, 185, 129, 0.1);
    --accent-red: #ef4444;
    
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --max-width: 1200px;
    --header-height: 70px;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background grid effect */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 90, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 65%, rgba(255, 45, 85, 0.06) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Glowing blur in the background */
.glow-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--primary);
    background: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 24px;
}

/* Base Layout Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

.badge-wrapper {
    display: inline-flex;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 0, 0.08);
    border: 1px solid rgba(255, 90, 0, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #ff904d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 90, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 90, 0, 0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 90, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 90, 0, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

/* Partners Trusted By Section */
.partners {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(12, 12, 20, 0.3);
    text-align: center;
}

.partners h3, .partners h2, .partners .partners-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    height: 32px;
}

.partner-logo:hover {
    opacity: 0.95;
}

.partner-logo svg {
    height: 28px;
    width: auto;
    fill: currentColor;
}

.partner-logo span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* Glassmorphic Cards Grid */
.section {
    padding: 80px 0;
}

.section-title-wrapper {
    margin-bottom: 48px;
    text-align: center;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Cards & Layout Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%, rgba(255, 90, 0, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 90, 0, 0.03);
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }

/* Staking Info Section */
.staking-table-card {
    grid-column: span 12;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 16px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 20px 20px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

.network-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.network-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-icon.dot {
    background: #e6007a;
    color: white;
}

.network-icon.ksm {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.address-cell {
    font-family: monospace;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    position: relative;
}

.copy-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.copy-btn:active {
    transform: scale(0.9);
}

/* Tooltip style */
.tooltip-text {
    visibility: hidden;
    background-color: #1c1c28;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 11px;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
}

.copy-btn.copied .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.badge-active {
    background: var(--accent-green-bg);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-inactive {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Hardware specs layout */
.hardware-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hardware-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 90, 0, 0.06);
    border: 1px solid rgba(255, 90, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.hardware-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hardware-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-label {
    color: var(--text-muted);
}

.specs-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Decentralization / Map feature styling */
.decentralization-wrapper {
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.globe-accent {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}

/* Features grid details */
.feature-list-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-item-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-item-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA footer styling */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.cta-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at bottom, rgba(255, 90, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* FAQ items */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.active {
    border-color: var(--border-color-hover);
    background: var(--bg-surface-hover);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 24px;
    border-top-color: var(--border-color);
}

/* Footer structure */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: rgba(5, 5, 8, 0.9);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-credits {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-credits a {
    color: var(--text-secondary);
}

.footer-credits a:hover {
    color: var(--primary);
}

/* Sub-page Specific: Services */
.services-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

.services-sidebar {
    grid-column: span 3;
}

.services-content-area {
    grid-column: span 9;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sticky-nav {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    border-left: 2px solid var(--border-color);
    padding-left: 16px;
}

.sticky-nav-item a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    padding: 4px 0;
}

.sticky-nav-item.active a, .sticky-nav-item a:hover {
    color: var(--primary);
}

.sticky-nav-item.active {
    border-left: 2px solid var(--primary);
    margin-left: -18px;
    padding-left: 16px;
}

.service-section-block {
    scroll-margin-top: calc(var(--header-height) + 40px);
}

.service-section-block h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-section-block h2 svg {
    color: var(--primary);
}

.service-section-block h3 {
    font-size: 18px;
    margin: 24px 0 12px 0;
    font-weight: 600;
}

.service-section-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-section-block ul {
    list-style-type: none;
    margin-bottom: 16px;
}

.service-section-block ul li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-section-block ul li::before {
    content: "➔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

.wallets-box {
    margin-top: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.wallet-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-color);
}

.wallet-row:last-child {
    border-bottom: none;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wallet-name {
    font-weight: 600;
    font-size: 14px;
}

.wallet-type {
    font-size: 12px;
    color: var(--text-muted);
}

.wallet-addr {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-addr span {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Timeline process styling */
.timeline {
    position: relative;
    padding-left: 32px;
    margin: 24px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-content h3, .timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Highlight boxes */
.highlight-note {
    background: rgba(255, 90, 0, 0.04);
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 20px 0;
}

.highlight-note p {
    font-size: 15px;
    margin-bottom: 0;
    color: #ff904d;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .col-8, .col-4 {
        grid-column: span 6;
    }
    
    .services-sidebar {
        display: none;
    }
    
    .services-content-area {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* Mobile menu overlays will be styled dynamically or show via JS toggle */
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: clamp(32px, 8vw, 44px);
        letter-spacing: -1px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .col-6, .col-8, .col-4 {
        grid-column: span 12;
    }
    
    .partners-list {
        gap: 30px;
    }
    
    td, th {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .address-cell {
        font-size: 12px;
    }
    
    .timeline {
        padding-left: 24px;
    }
    
    .timeline::before {
        left: 4px;
    }
    
    .timeline-dot {
        left: -24px;
        width: 10px;
        height: 10px;
        border-width: 2px;
        top: 6px;
    }
    
    .wallet-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .wallet-addr {
        width: 100%;
        justify-content: space-between;
    }
}

/* JavaScript Dynamic Mobile Menu Styles */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    border-top: 1px solid var(--border-color);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
