/* ==========================================================================
   DESIGN SYSTEM - RUSSELL PRESALE ($RUSSELL on Base B20)
   ========================================================================== */

/* --- Custom Variables & Theme --- */
:root {
    --bg-dark: #04060d;
    --bg-card: rgba(10, 15, 30, 0.65);
    --bg-card-hover: rgba(16, 24, 48, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 82, 255, 0.35);
    
    /* Branding Colors */
    --color-primary: #0052ff;      /* Base Blue */
    --color-primary-rgb: 0, 82, 255;
    --color-secondary: #00f0ff;    /* Neon Cyan */
    --color-secondary-rgb: 0, 240, 255;
    --color-accent: #7b2cbf;       /* Quantum Purple */
    --color-accent-rgb: 123, 44, 191;
    
    /* Text Colors */
    --text-main: #f8f9fa;
    --text-muted: #8e9bb0;
    --text-dark: #0f172a;
    
    /* Fonts */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows & Glows */
    --shadow-glow: 0 0 25px rgba(0, 82, 255, 0.25);
    --shadow-glow-cyan: 0 0 25px rgba(0, 240, 255, 0.25);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Background Glowing Orbs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

body::before {
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: 5%;
    left: -10%;
}

body::after {
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    bottom: 20%;
    right: -10%;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

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

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title span {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphic Box Template */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: border var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.glass-panel:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.05);
}

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

header.scrolled {
    background: rgba(4, 6, 14, 0.9);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.logo-text span {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.b20-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 82, 255, 0.1);
    border: 1px solid rgba(0, 82, 255, 0.3);
    color: var(--color-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.b20-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-secondary);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

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

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-wallet-connect {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-heading);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 99px;
    transition: all var(--transition-fast);
}

.btn-wallet-connect:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.2);
    background: rgba(0, 82, 255, 0.05);
}

/* --- Hero Section & Presale Panel --- */
.hero-section {
    padding-top: 100px;
    padding-bottom: 5px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--color-secondary);
    padding: 0.35rem 0.9rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
}

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

.hero-title .highlight-text {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-stat-card {
    padding: 1.2rem;
    text-align: center;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Presale Card Panel */
.presale-card {
    padding: 2.2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at top right, rgba(0, 82, 255, 0.05), transparent 60%), var(--bg-card);
}

.presale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    border-radius: 16px 16px 0 0;
}

.presale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.presale-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 1.8s infinite;
}

.presale-timer-container {
    text-align: right;
}

.presale-timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.presale-timer-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.presale-bar-title {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.presale-progress-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.presale-progress-bar {
    height: 100%;
    width: 42.5%; /* Live simulation starting value */
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 99px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.presale-caps {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.presale-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.presale-field {
    background: rgba(4, 6, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    position: relative;
}

.field-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.field-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.field-input-row input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    width: 60%;
}

.field-token-symbol {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.field-token-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.calculator-arrow {
    display: flex;
    justify-content: center;
    margin: -0.75rem 0;
    z-index: 2;
}

.arrow-icon-bg {
    width: 32px;
    height: 32px;
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-fast);
}

.arrow-icon-bg:hover {
    transform: rotate(180deg);
}

/* Wallet Simulation Interface States */
.presale-action-btn {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 12px;
}

.presale-footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.presale-footer-info span:last-child {
    color: var(--color-secondary);
}

/* --- B20 Protocol Showcase Section --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.showcase-card {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 82, 255, 0.03), transparent 70%);
    pointer-events: none;
}

.showcase-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 82, 255, 0.1);
    border: 1px solid rgba(0, 82, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
}

.showcase-card:hover .showcase-icon-box {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.showcase-card h3 {
    font-size: 1.3rem;
    color: #fff;
}

.showcase-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Tokenomics Section --- */
.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* SVG Chart adjustments and styles */
.pie-chart-svg {
    width: 320px;
    height: 320px;
    transform: rotate(-90deg);
}

.pie-slice {
    fill: none;
    stroke-width: 30;
    transition: stroke-width var(--transition-fast), filter var(--transition-fast);
    cursor: pointer;
}

.slice-presale {
    stroke: var(--color-primary);
    stroke-dasharray: 70 100;
}

.slice-liquidity {
    stroke: var(--color-secondary);
    stroke-dasharray: 25 100;
    stroke-dashoffset: -70;
}

.slice-airdrop {
    stroke: var(--color-accent);
    stroke-dasharray: 5 100;
    stroke-dashoffset: -95;
}

.pie-slice:hover {
    stroke-width: 34;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

.chart-center-hole {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.chart-center-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.chart-center-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tokenomics-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--color-primary);
}

.tokenomics-item.item-presale {
    border-left-color: var(--color-primary);
}
.tokenomics-item.item-liquidity {
    border-left-color: var(--color-secondary);
}
.tokenomics-item.item-airdrop {
    border-left-color: var(--color-accent);
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
}

.tokenomics-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.tokenomics-amount {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tokenomics-percentage {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
}

.tokenomics-percentage.pct-presale {
    color: var(--color-primary);
}
.tokenomics-percentage.pct-liquidity {
    color: var(--color-secondary);
}
.tokenomics-percentage.pct-airdrop {
    color: var(--color-accent);
}

/* --- Roadmap Timeline --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), var(--color-accent));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1.5rem 3rem;
    position: relative;
    width: 50%;
    clear: both;
}

.timeline-item:nth-child(odd) {
    float: left;
    text-align: right;
}

.timeline-item:nth-child(even) {
    float: right;
    text-align: left;
}

.timeline-badge {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--color-primary);
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 10px var(--color-primary);
}

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

.timeline-item:nth-child(3) .timeline-badge {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

.timeline-item:nth-child(4) .timeline-badge {
    border-color: var(--color-secondary);
}

.timeline-content {
    padding: 1.8rem;
}

.timeline-phase {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.timeline-item:nth-child(3) .timeline-phase {
    color: var(--color-accent);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.timeline-content ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-content li {
    position: relative;
}

.timeline-item:nth-child(odd) li {
    padding-right: 1.2rem;
}
.timeline-item:nth-child(even) li {
    padding-left: 1.2rem;
}

.timeline-item:nth-child(odd) li::after {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--color-primary);
}

.timeline-item:nth-child(even) li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.timeline-item:nth-child(3) li::before,
.timeline-item:nth-child(3) li::after {
    color: var(--color-accent);
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

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

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

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

.faq-question {
    width: 100%;
    padding: 1.4rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 1.8rem;
}

.faq-answer-inner {
    padding-bottom: 1.4rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Active Accordion State */
.faq-item.active {
    border-color: rgba(0, 82, 255, 0.4);
    background: rgba(10, 15, 30, 0.7);
}

.faq-item.active .faq-question {
    color: var(--color-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-secondary);
}

/* --- Wallet Connect Modal Overlay --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 14, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

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

.modal-box {
    width: 90%;
    max-width: 440px;
    padding: 2.2rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: #fff;
}

.modal-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.wallet-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
    transition: all var(--transition-fast);
    width: 100%;
    text-align: left;
}

.wallet-option:hover {
    border-color: var(--color-primary);
    background: rgba(0, 82, 255, 0.05);
    transform: translateY(-1px);
}

.wallet-option-name {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.wallet-option-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.wallet-tag {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.wallet-option:hover .wallet-tag {
    background: rgba(0, 82, 255, 0.15);
    color: var(--color-secondary);
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: #020307;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 320px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(142, 155, 176, 0.5);
}

.footer-disclaimer {
    max-width: 700px;
    text-align: justify;
    line-height: 1.5;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(142, 155, 176, 0.4);
}

/* --- Animations --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Float Animation for Mascot */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
        float: none !important;
    }
    
    .timeline-badge {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) li {
        padding-right: 0;
        padding-left: 1.2rem;
    }
    
    .timeline-item:nth-child(odd) li::after {
        content: none;
    }
    
    .timeline-item:nth-child(odd) li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .nav-links {
        display: none; /* Can be simplified for mobile toggle or inline */
    }
    
    .presale-card {
        padding: 1.5rem;
    }
    
    .pie-chart-svg {
        width: 260px;
        height: 260px;
    }
    
    .chart-center-hole {
        width: 110px;
        height: 110px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   AIRDROP PAGE CUSTOM STYLING
   ========================================================================== */
.airdrop-page-body {
    background-color: var(--bg-dark);
}

.task-number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.task-external-btn {
    display: inline-block;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.task-external-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
}

.btn-done {
    background: #ffffff;
    color: #000000;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-done:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-done.completed-state {
    background: #22c55e !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    cursor: default;
}

.airdrop-task-card.completed {
    border-color: rgba(34, 197, 94, 0.4) !important;
    background: rgba(34, 197, 94, 0.02) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.05);
}

.airdrop-task-card.completed .task-number-badge {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.btn-submit-airdrop.active-state {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)) !important;
    color: #fff !important;
    cursor: pointer !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.btn-submit-airdrop.active-state:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
}

.task-input-row input:focus {
    outline: none;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

@media (max-width: 600px) {
    .task-action-area {
        padding-left: 0 !important;
    }
    .task-input-row {
        flex-direction: column;
    }
    .btn-done {
        width: 100%;
    }
}

/* ==========================================================================
   ADMIN PAGE CUSTOM STYLING
   ========================================================================== */
.admin-page-body {
    background-color: var(--bg-dark);
}

.admin-lock-card {
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.15) !important;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-toggle .slider-round::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #9ca3af;
    border-radius: 50%;
    transition: 0.3s ease;
}

.switch-toggle input:checked + .slider-round {
    background-color: var(--color-primary);
    border-color: rgba(0, 82, 255, 0.3);
}

.switch-toggle input:checked + .slider-round::before {
    transform: translateX(20px);
    background-color: #fff;
    box-shadow: 0 0 8px var(--color-secondary);
}

/* Whitelist Registry Table styling */
.whitelist-table th {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.whitelist-table tbody tr {
    transition: var(--transition-fast);
}

.whitelist-table tbody tr:hover {
    background: rgba(255,255,255,0.02) !important;
}

.whitelist-table td {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

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

/* RESPONSIVE ADMIN STYLES */
@media (max-width: 991px) {
    .admin-workspace-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   MAINTENANCE / OFFLINE OVERLAY STYLES
   ========================================================================== */
.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(10, 15, 30, 0.98) 0%, rgba(4, 6, 13, 0.99) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: var(--font-body);
    color: var(--text-main);
}

/* Glowing background animations */
.maintenance-overlay::before {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: maintenance-float-glow 15s infinite alternate ease-in-out;
    pointer-events: none;
}

.maintenance-overlay::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.07) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: maintenance-float-glow 12s infinite alternate-reverse ease-in-out;
    pointer-events: none;
}

@keyframes maintenance-float-glow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.maintenance-card {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    max-width: 540px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 82, 255, 0.1);
    position: relative;
    z-index: 2;
    animation: maintenance-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes maintenance-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.maintenance-icon-container {
    width: 90px;
    height: 90px;
    background: rgba(0, 240, 255, 0.03);
    border: 2px solid rgba(0, 240, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
    animation: maintenance-pulse-cyan 3s infinite alternate ease-in-out;
}

.maintenance-icon-glow {
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px dashed rgba(123, 44, 191, 0.2);
    border-radius: 50%;
    animation: maintenance-spin 30s linear infinite;
}

@keyframes maintenance-spin {
    100% { transform: rotate(360deg); }
}

@keyframes maintenance-pulse-cyan {
    0% {
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.1), inset 0 0 10px rgba(0, 240, 255, 0.05);
        border-color: rgba(0, 240, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 35px rgba(0, 240, 255, 0.35), inset 0 0 20px rgba(0, 240, 255, 0.15);
        border-color: rgba(0, 240, 255, 0.6);
    }
}

.maintenance-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.maintenance-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.maintenance-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.maintenance-socials .social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.maintenance-socials .social-link:hover {
    color: #fff;
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

.maintenance-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.maintenance-btn-admin {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.maintenance-btn-admin:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

/* Page Status Toggle (Green when active/online, Red when inactive/offline) */
.switch-status .slider-round {
    background-color: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

.switch-status .slider-round::before {
    background-color: #ef4444 !important;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6) !important;
}

.switch-status input:checked + .slider-round {
    background-color: rgba(34, 197, 94, 0.15) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.switch-status input:checked + .slider-round::before {
    transform: translateX(20px);
    background-color: #22c55e !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6) !important;
}

/* Reversed Toggle (Green when unchecked/normal, Red when checked/paused) */
.switch-reverse .slider-round {
    background-color: rgba(34, 197, 94, 0.15) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

.switch-reverse .slider-round::before {
    background-color: #22c55e !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6) !important;
}

.switch-reverse input:checked + .slider-round {
    background-color: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.switch-reverse input:checked + .slider-round::before {
    transform: translateX(20px);
    background-color: #ef4444 !important;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6) !important;
}

/* Page Status Buttons */
.btn-page-status {
    background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-page-status.status-offline {
    background: linear-gradient(135deg, #22c55e, #15803d) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4) !important;
}

/* ==========================================================================
   HOMEPAGE NEO-BRUTALIST STYLING
   ========================================================================== */

/* Neon Brutalist Colors */
.bg-base-blue {
    background-color: #0052ff !important;
}

.bg-base-yellow {
    background-color: #fdf45c !important;
}

.text-base-blue {
    color: #0052ff !important;
}

.text-base-yellow {
    color: #fdf45c !important;
}

/* Neo-Brutalist Button */
.btn-neobrutalist {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff !important;
    background-color: #0052ff;
    border: 6px solid #000000 !important;
    border-radius: 20px;
    box-shadow: 5px 5px 0px 0px #000000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.btn-neobrutalist:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px 0px #000000;
    background-color: #0044d4;
}

.btn-neobrutalist:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px 0px #000000;
}

.btn-neobrutalist-yellow {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    background-color: #fdf45c;
    border: 6px solid #000000 !important;
    border-radius: 20px;
    box-shadow: 5px 5px 0px 0px #000000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.btn-neobrutalist-yellow:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px 0px #000000;
    background-color: #ebde4b;
}

.btn-neobrutalist-yellow:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px 0px #000000;
}

/* Small Neo-Brutalist Link Card Button */
.btn-neobrutalist-sm-yellow {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    background-color: #fdf45c;
    border: 4px solid #000000 !important;
    border-radius: 12px;
    box-shadow: 3px 3px 0px 0px #000000;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.btn-neobrutalist-sm-yellow:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px 0px #000000;
    background-color: #ebde4b;
}

.btn-neobrutalist-sm-yellow-disabled {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000 !important;
    background-color: #fdf45c;
    border: 4px solid #000000 !important;
    border-radius: 12px;
    box-shadow: 3px 3px 0px 0px #000000;
    cursor: default;
    text-align: center;
    user-select: none;
}

/* Scrolling Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background: #000000;
    border-top: 6px solid #000000;
    border-bottom: 6px solid #000000;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
}

.marquee-dog-dot {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #000000;
    overflow: hidden;
    display: inline-block;
}

.marquee-dog-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Neo-Brutalist Layout Cards */
.card-neobrutalist {
    background-color: #ffffff;
    border: 4px solid #000000 !important;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 8px 8px 0px 0px #000000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #000000 !important;
}

.card-neobrutalist h2, .card-neobrutalist h3, .card-neobrutalist p {
    color: #000000 !important;
}

.card-neobrutalist:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px 0px #000000;
}

/* Link Cards */
.link-card-neobrutalist {
    background-color: #0052ff;
    border: 4px solid #000000 !important;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 170px;
    box-shadow: 4px 4px 0px 0px #000000;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.link-card-neobrutalist:hover {
    transform: scale(1.05);
}

.link-card-neobrutalist-disabled {
    background-color: #0052ff;
    border: 4px solid #000000 !important;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 170px;
    box-shadow: 4px 4px 0px 0px #000000;
    text-decoration: none;
    cursor: default;
    user-select: none;
}

.link-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff !important;
    text-align: center;
}

.link-card-icon-placeholder {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* FAQ Accordions */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background-color: #ffffff;
    border: 4px solid #000000 !important;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 4px 4px 0px 0px #000000;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000 !important;
    cursor: pointer;
    outline: none;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.2s ease;
    color: #0052ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, border-top-width 0.1s ease;
    background-color: #f9fafb;
    border-top: 0 solid #000000;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #334155 !important;
}

.faq-answer p {
    color: #334155 !important;
}

.faq-answer ul, .faq-answer ol {
    color: #334155 !important;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.faq-answer li {
    margin-bottom: 0.25rem;
}

.faq-answer-content {
    padding: 1.5rem 2rem;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-card.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-card.active .faq-answer {
    max-height: 1000px;
    border-top: 4px solid #000000;
}
