/*! Generated by build-css-bundle.cjs — do not edit.
 *  Source order is defined in that file and matters (CSS cascade).
 *  Edit the individual files in styles/ and re-run the build.
 *  Bundled: 23 stylesheets
 */
/* ===== main.css ===== */
/* "No BS" Global Design System */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Roboto+Mono:wght@400;700&display=swap');

/* Base Reset */
body {
    font-family: 'Roboto Mono', monospace;
    background-color: #000000;
    /* Void Black */
    color: #FFFFFF;
    /* Paper White */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Global Grit/Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.9;
}

/* Utility Components */

/* The "Neo-Border" - Standard container style */
.neo-border {
    border: 4px solid #000000;
}

/* The "Hard Shadow" - Depth without softness */
.hard-shadow {
    box-shadow: 8px 8px 0px 0px #000000;
}

.hard-shadow-white {
    box-shadow: 8px 8px 0px 0px #FFFFFF;
}

.hard-shadow-orange {
    box-shadow: 8px 8px 0px 0px #FB923C;
}

/* Buttons */
.btn-neo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    border: 4px solid #000000;
    background-color: #FFFFFF;
    /* White default */
    color: #000000;
    box-shadow: 6px 6px 0px 0px #000000;
    /* Hard shadow */
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0;
}

.btn-neo:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px 0px #000000;
    background-color: #FDE047;
    /* Warning Yellow */
}

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

.btn-neo.primary {
    background-color: #FDE047;
    /* Warning Yellow */
}

.btn-neo.primary:hover {
    background-color: #FFFFFF;
}

.btn-neo.action {
    background-color: #FB923C;
    /* Action Orange */
    color: #000000;
}

.btn-neo.action:hover {
    background-color: #FFFFFF;
}

.btn-neo.terminal {
    background-color: #000000;
    color: #22c55e;
    /* Terminal Green */
    border-color: #22c55e;
    box-shadow: 6px 6px 0px 0px #22c55e;
}

.btn-neo.terminal:hover {
    background-color: #22c55e;
    color: #000000;
    box-shadow: 8px 8px 0px 0px #FFFFFF;
}

/* Inputs */
.input-neo {
    width: 100%;
    padding: 1rem;
    background-color: #FFFFFF;
    border: 4px solid #000000;
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    color: #000000;
    outline: none;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.input-neo:focus {
    box-shadow: 6px 6px 0px 0px #FDE047;
    /* Yellow highlight */
    transform: translate(-2px, -2px);
}

.label-neo {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

/* Cards */
.card-neo {
    background-color: #F3F4F6;
    /* Gray-100 */
    border: 4px solid #000000;
    padding: 2rem;
    box-shadow: 12px 12px 0px 0px #000000;
    position: relative;
    transition: transform 0.2s;
}

.card-neo:hover {
    transform: translate(-2px, -2px);
    box-shadow: 16px 16px 0px 0px #FB923C;
    /* Orange shadow on hover */
}

/* Layout Utilities */
.section-divider {
    height: 3rem;
    width: 100%;
    background: repeating-linear-gradient(45deg,
            #000000,
            #000000 20px,
            #FDE047 20px,
            #FDE047 40px);
    border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
}

/* Glitch / Tech Effects */
.terminal-text {
    font-family: 'Roboto Mono', monospace;
    color: #22c55e;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* ===== navbar.css ===== */
/* Navbar Base Styles */
nav[data-name="navbar"] {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  width: 100%;
  z-index: 9999;
}

/* Mobile Drawer (Slide-in from Right) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  /* dynamic viewport height */
  max-width: 400px;
  background-color: #000000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  overflow-y: auto;
  border-left: 4px solid #FDE047;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Texture Pattern for Drawer (CSS-only, no external images) */
.drawer-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a),
    linear-gradient(45deg, #1a1a1a 25%, transparent 25%, transparent 75%, #1a1a1a 75%, #1a1a1a);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Prevent body scroll when menu open */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* Navigation Links */
.nav-link {
  position: relative;
  display: inline-block;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.2s ease;
}

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

/* Explore Dropdown */
.explore-dropdown-content {
  animation: slideDown 0.2s ease-out forwards;
  transform-origin: top center;
}

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

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Safe Area Insets (iPhone X+ support) */
.safe-area-padding {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ===== hero.css ===== */
/* NEO-BRUTALIST HERO STYLES - DonateComputers.uk Rebrand */

.hero-neo {
    position: relative;
    background-color: #FDE047; /* Warning Yellow */
    color: #000000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    animation: slamIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Massive bold headline styling */
.hero-neo h1 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.85;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 600px;
    color: #000000;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

/* SLAM-IN Animation */
@keyframes slamIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Marquee Animation - handled via JS, keeping base styles */
.marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

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

/* Trust badge hover effects */
.hero-neo .bg-black:hover,
.hero-neo .bg-white:hover,
.hero-neo .bg-terminal-green:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px 0px #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-neo h1 {
        font-size: 14vw !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta a {
        text-align: center;
    }
}

/* Legacy hero class for backwards compatibility */
.hero {
    position: relative;
    color: white;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-gradient {
    background-image: linear-gradient(135deg, #FDE047 0%, #FB923C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== impact.css ===== */
.impact-metrics {
    position: relative;
    overflow: hidden;
}

.impact-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.metric-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.metric-card:hover {
    transform: translateY(-10px);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metric-label {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-top: 0.5rem;
}

.metric-description {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.metric-icon {
    margin-top: 1rem;
    color: #10B981;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.2);
}

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

.animate-count {
    animation: countUp 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@media (max-width: 768px) {
    .metric-value {
        font-size: 2.5rem;
    }
    
    .metric-label {
        font-size: 1rem;
    }
    
    .metric-description {
        font-size: 0.75rem;
    }
}

/* ===== tech.css ===== */
.tech-section {
    position: relative;
    overflow: hidden;
    background-color: #111827;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tech-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tech-card {
    background: rgba(31, 41, 55, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.2);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    z-index: -1;
    transform: translateZ(-1px);
}

.tech-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.tech-card:hover::after {
    left: 100%;
    opacity: 1;
}

.tech-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-container {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.tech-icon {
    font-size: 1.75rem;
    color: #10B981;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotateY(20deg);
    color: #34D399;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.tech-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10B981, #047857);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tech-card:hover .tech-title::after {
    width: 60px;
}

.tech-description {
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Floating particles */
.tech-particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.2);
    pointer-events: none;
    animation: float 10s infinite ease-in-out;
}

/* Glow effect */
.tech-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

/* Animated circuit lines */
.tech-circuit {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: top;
    opacity: 0.2;
    z-index: 0;
}

/* Enhanced animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.animate-pulse-slow {
    animation: pulse 8s infinite ease-in-out;
}

.animate-pulse-slow.delay-1000 {
    animation-delay: 1s;
}

.animate-float-slow {
    animation: float 20s infinite ease-in-out;
}

.animate-float-slow-reverse {
    animation: float 20s infinite ease-in-out reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
}

/* ===== news.css ===== */
.news-section {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(229, 231, 235, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.news-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.news-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.news-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #10B981, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.news-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.news-date i {
    margin-right: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1F2937;
}

.news-excerpt {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: #10B981;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #047857;
    transform: translateX(5px);
}

.news-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* ===== contact.css ===== */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    color: #FFFFFF !important;
    background-color: #1F2937 !important;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #6B7280 !important;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #FFFFFF;
}

.contact-form .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.contact-form .error-message {
    color: #EF4444;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.contact-form .success-message {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.contact-form input:disabled {
    background-color: #374151 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-info-card {
    background: rgba(31, 41, 55, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: #10B981;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.contact-info-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-info-content p {
    color: #9CA3AF;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10B981;
    transform: translateY(-3px);
}

.success-message-container {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #10B981;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ===== howItWorks.css ===== */
.circuit-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(16, 185, 129, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: top;
    opacity: 0.2;
}

.step-card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #10b981, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#model-container {
    position: relative;
    overflow: hidden;
}

#model-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.impact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.btn {
    @apply py-3 px-6 rounded-lg font-medium transition-all duration-300 transform hover:scale-105;
}

.btn-primary {
    @apply bg-warning-yellow text-black hover:bg-action-orange;
}

.btn-secondary {
    @apply bg-gray-700 text-white hover:bg-gray-600;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #model-container {
        height: 300px;
    }
    
    .step-card {
        padding: 1rem;
    }
}

/* Color variations for step cards */
.from-warning-yellow\/20 {
    --tw-gradient-from: rgba(250, 204, 21, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0));
}

.to-action-orange\/20 {
    --tw-gradient-to: rgba(251, 146, 60, 0.2);
}

.text-warning-yellow {
    --tw-text-opacity: 1;
    color: rgba(250, 204, 21, var(--tw-text-opacity));
}

.from-blue-400\/20 {
    --tw-gradient-from: rgba(96, 165, 250, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.to-blue-600\/20 {
    --tw-gradient-to: rgba(37, 99, 235, 0.2);
}

.text-blue-400 {
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
}

.from-yellow-400\/20 {
    --tw-gradient-from: rgba(251, 191, 36, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.to-yellow-600\/20 {
    --tw-gradient-to: rgba(217, 119, 6, 0.2);
}

.text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
}

.from-purple-400\/20 {
    --tw-gradient-from: rgba(167, 139, 250, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.to-purple-600\/20 {
    --tw-gradient-to: rgba(124, 58, 237, 0.2);
}

.text-purple-400 {
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
}

.from-red-400\/20 {
    --tw-gradient-from: rgba(248, 113, 113, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.to-red-600\/20 {
    --tw-gradient-to: rgba(220, 38, 38, 0.2);
}

.text-red-400 {
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.from-teal-400\/20 {
    --tw-gradient-from: rgba(45, 212, 191, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 212, 191, 0));
}

.to-teal-600\/20 {
    --tw-gradient-to: rgba(13, 148, 136, 0.2);
}

.text-teal-400 {
    --tw-text-opacity: 1;
    color: rgba(45, 212, 191, var(--tw-text-opacity));
}

/* ===== aboutMission.css ===== */
.about-mission-section {
    position: relative;
    overflow: hidden;
}

.about-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-card {
    background: rgba(31, 41, 55, 0.7);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.2);
}

.mission-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.mission-image-container:hover {
    transform: scale(1.02);
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.mission-image-container:hover .mission-image {
    transform: scale(1.05);
}

.mission-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.feature-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-container {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-description {
    color: #9CA3AF;
    line-height: 1.6;
}

.decorative-shape {
    position: absolute;
    border-radius: 1.5rem;
    z-index: -1;
}

.decorative-shape.top-left {
    top: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    background: rgba(16, 185, 129, 0.1);
    transform: rotate(15deg);
}

.decorative-shape.bottom-right {
    bottom: -2rem;
    right: -2rem;
    width: 10rem;
    height: 10rem;
    border: 4px solid rgba(16, 185, 129, 0.1);
    transform: rotate(-15deg);
}

@media (max-width: 768px) {
    .about-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ===== aboutPage.css ===== */
.about-page {
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%2310B981" stroke-width="0.5" stroke-dasharray="5,5" /></svg>');
    opacity: 0.05;
    z-index: -1;
}

.prose {
    max-width: 65ch;
    line-height: 1.75;
}

.prose h2, 
.prose h3, 
.prose h4 {
    color: #1f2937;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose p {
    margin-bottom: 1.5em;
    color: #4b5563;
}

.prose ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1.75em;
}

.prose li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 0.5em;
    height: 0.5em;
    background-color: #10B981;
    border-radius: 50%;
}

/* ===== missionPage.css ===== */
/* Mission Page specific styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mission-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.2);
    transition: all 0.5s ease;
}

.mission-image-container:hover {
    transform: scale(1.02);
}

.about-card {
    background: rgba(31, 41, 55, 0.7);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.2);
}

/* Button styles matching the site's design language */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

/* ===== volunteer.css ===== */
.volunteer-page {
    position: relative;
    overflow: hidden;
}

.volunteer-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%2310B981" stroke-width="0.5" stroke-dasharray="5,5" /></svg>');
    opacity: 0.05;
    z-index: -1;
}

.volunteer-role-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.volunteer-role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.skill-badge {
    transition: all 0.2s ease;
}

.skill-badge:hover {
    transform: translateY(-2px);
    background-color: #10B981;
    color: white;
}

/* ===== volunteerApplication.css ===== */
.volunteer-application {
    position: relative;
    overflow: hidden;
}

.volunteer-application::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%2310B981" stroke-width="0.5" stroke-dasharray="5,5" /></svg>');
    opacity: 0.05;
    z-index: -1;
}

.volunteer-form {
    transition: all 0.3s ease;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    color: #374151 !important;
    background-color: #FFFFFF !important;
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

.volunteer-form input::placeholder,
.volunteer-form select::placeholder,
.volunteer-form textarea::placeholder {
    color: #9CA3AF;
}

.volunteer-form label {
    color: #374151;
    font-weight: 500;
}

.volunteer-form button {
    transition: all 0.3s ease;
}

.volunteer-form button:hover {
    transform: translateY(-2px);
}

.volunteer-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== auth.css ===== */
.auth-form input,
.auth-form select,
.auth-form textarea {
    color: #374151 !important;
    background-color: #FFFFFF !important;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    cursor: text;
    z-index: 10;
    position: relative;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background-color: #FFFFFF !important;
}

.auth-form input::placeholder,
.auth-form select::placeholder,
.auth-form textarea::placeholder {
    color: #9CA3AF !important;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.auth-form .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.auth-form .error-message {
    color: #EF4444;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.auth-form .success-message {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.auth-link {
    color: #10B981;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #059669;
    text-decoration: underline;
}

.auth-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Improve clickability */
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
}

/* Make register button more obvious */
.auth-form .register-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #10B981;
    font-weight: 500;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-form .register-link:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    text-decoration: underline;
}

/* ===== llm.css ===== */
.llm-page {
    background-color: #111827;
    color: #F9FAFB;
    scroll-behavior: smooth;
}

.message-content {
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.message-content strong {
    font-weight: 600;
    color: inherit;
}

.message-content br {
    display: block;
    content: "";
    margin-top: 0.5em;
}

/* Sustainable AI specific styles */
.sustainable-ai-feature {
    transition: all 0.3s ease;
}

.sustainable-ai-feature:hover {
    transform: translateY(-5px);
}

.sustainable-ai-stat {
    @apply bg-warning-yellow/10 rounded-lg p-4 border border-warning-yellow/20;
    transition: all 0.3s ease;
}

.sustainable-ai-stat:hover {
    @apply bg-warning-yellow/20 border-warning-yellow/30;
}

.sustainable-ai-comparison {
    position: relative;
    overflow: hidden;
}

.sustainable-ai-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(250, 204, 21, 0) 0%, rgba(250, 204, 21, 0.2) 50%, rgba(250, 204, 21, 0) 100%);
}

.sustainable-ai-comparison::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(250, 204, 21, 0) 0%, rgba(250, 204, 21, 0.2) 50%, rgba(250, 204, 21, 0) 100%);
}

@keyframes pulse-amber {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-amber {
    animation: pulse-amber 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.llm-header {
    text-align: center;
    margin-bottom: 4rem;
}

.llm-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.llm-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

.vision-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision-content {
    flex: 1;
}

.vision-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-text {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    color: #10B981;
    margin-right: 1rem;
}

.ai-preview {
    flex: 1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: #1F2937;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.feature-card-icon {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card-text {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.community-section {
    text-align: center;
    margin-top: 3rem;
}

.community-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community-text {
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.chat-container {
    background-color: #1F2937;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    border: 1px solid #374151;
}

.chat-header {
    background-color: #111827;
    padding: 1.5rem;
    border-bottom: 1px solid #374151;
}

.chat-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.chat-title-icon {
    color: #10B981;
    margin-right: 0.75rem;
}

.chat-subtitle {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    scroll-behavior: smooth;
}

.message {
    margin-bottom: 1rem;
    display: flex;
}

.message-user {
    justify-content: flex-end;
}

.message-ai {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 1rem;
    border-radius: 0.75rem;
}

.message-user .message-content {
    background-color: #10B981;
    color: white;
    border-top-right-radius: 0;
}

.message-ai .message-content {
    background-color: #374151;
    color: white;
    border-top-left-radius: 0;
}

.chat-input-container {
    padding: 1.5rem;
    background-color: #1F2937;
    border-top: 1px solid #374151;
}

.chat-input-form {
    display: flex;
}

.chat-input {
    flex: 1;
    background-color: #374151;
    border: 1px solid #4B5563;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
}

.chat-input:focus {
    outline: none;
    border-color: #10B981;
}

.send-button {
    background-color: #10B981;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.send-button:hover {
    background-color: #059669;
}

.send-button:disabled {
    background-color: #4B5563;
    cursor: not-allowed;
}

.suggestions-container {
    margin-bottom: 1rem;
}

.suggestions-title {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-button {
    background-color: #374151;
    color: #D1D5DB;
    border: none;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-button:hover {
    background-color: #4B5563;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
}

.typing-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.disclaimer {
    color: #9CA3AF;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .vision-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .chat-messages {
        height: 300px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

/* ===== donation.css ===== */
.donation-form {
    color: white;
}

.donation-form input,
.donation-form select,
.donation-form textarea {
    color: white !important;
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%) !important;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1),
                0 0 20px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
    outline: none;
}

.donation-form input::placeholder,
.donation-form select::placeholder,
.donation-form textarea::placeholder {
    color: #6B7280;
}

.donation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.donation-form .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.donation-form .error-message {
    color: #EF4444;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.donation-form .success-message {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.donation-form input:disabled {
    background-color: #374151 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.donation-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.hardware-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border: 1px solid #374151;
    position: relative;
    overflow: hidden;
}

.hardware-card:hover {
    transform: translateY(-5px);
}

.hardware-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.hardware-card:hover::before {
    left: 100%;
}

.hardware-icon {
    transition: all 0.3s ease;
}

.hardware-card:hover .hardware-icon {
    transform: scale(1.1);
}

.impact-display {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.impact-display:hover {
    transform: translateY(-5px);
}

.impact-display::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: conic-gradient(from 45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: rotateGradient 8s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.impact-progress {
    transition: width 0.5s ease;
}

.submit-button {
    position: relative;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.submit-button:hover::after {
    left: 100%;
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Fix for hardware selection buttons */
.hardware-selector button {
    width: auto !important;
    max-width: 100%;
    display: inline-flex;
    overflow: visible;
    flex-shrink: 0;
}

/* Prevent button expansion */
button[type="button"] {
    width: auto !important;
    display: inline-flex;
    flex-shrink: 0;
}

/* Donation Information Page Styles */
.donation-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.donation-notice {
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.impact-section .grid-item {
    transition: all 0.3s ease;
}

.impact-section .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.benefits-section .grid-item {
    transition: all 0.3s ease;
}

.benefits-section .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.environmental-section .check-item {
    transition: all 0.3s ease;
}

.environmental-section .check-item:hover {
    transform: translateX(5px);
}

/* Prevent buttons from expanding in hardware selector */
.quantity-selector button {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 auto;
}

.hardware-selector .quantity-value {
    width: 32px;
    text-align: center;
    flex: 0 0 auto;
}

/* PC Recycling Theme Enhancements */
.pc-recycling-gradient {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
}

.recycling-glow {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.recycling-icon-animation {
    animation: recycleRotate 3s linear infinite;
}

@keyframes recycleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pc-card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.pc-card-hover:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2), 
                0 0 30px rgba(16, 185, 129, 0.1);
}

/* Enhanced Form Styling */
.donation-form input,
.donation-form select,
.donation-form textarea {
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%) !important;
    border: 1px solid #374151;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1),
                0 0 20px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

/* PC Recycling Button Enhancements */
.voxel-button {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxel-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4),
                0 0 40px rgba(16, 185, 129, 0.2);
}

.voxel-button::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.6s ease;
}

.voxel-button:hover::before {
    left: 100%;
}

/* FAQ Section Enhancements */
.donation-faq-item {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%);
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.donation-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.donation-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.donation-faq-question:hover {
    color: #10B981;
}

.donation-faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(55, 65, 81, 0.5);
    animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Animation */
.success-checkmark {
    animation: successPulse 1.5s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #1F2937 25%, #374151 50%, #1F2937 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Mobile Responsiveness Enhancements */
@media (max-width: 768px) {
    .pc-card-hover:hover {
        transform: translateY(-4px);
    }
    
    .donation-faq-item {
        padding: 1rem;
    }
    
    .voxel-button:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

/* Accessibility Enhancements */
.focus-ring:focus {
    outline: 2px solid #10B981;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Dark Mode Optimizations */
@media (prefers-color-scheme: dark) {
    .donation-form {
        color: #F9FAFB;
    }
    
    .hardware-card {
        background: linear-gradient(145deg, #111827 0%, #0F172A 100%);
    }
    
    .donation-faq-item {
        background: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    }
}

/* ===== common/loading.css ===== */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.loading-spinner {
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-pulse {
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* ===== common/toast.css ===== */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
}

.toast {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: slide-up 0.3s ease-out;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast-success {
    background-color: #10B981;
    color: white;
}

.toast-error {
    background-color: #EF4444;
    color: white;
}

.toast-info {
    background-color: #3B82F6;
    color: white;
}

.toast-warning {
    background-color: #F59E0B;
    color: white;
}

/* ===== common/modal.css ===== */
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 40;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 50;
    max-width: 90%;
    width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.modal-body {
    padding: 1rem;
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-container {
    animation: modal-fade-in 0.3s ease-out;
}

/* ===== footer.css ===== */
.footer {
    position: relative;
    overflow: hidden;
    background-color: #111827;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #10B981, transparent);
}

.footer-link {
    color: #9CA3AF;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: #10B981;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #9CA3AF;
}

.footer-contact-icon {
    color: #10B981;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #10B981;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #6B7280;
    font-size: 0.875rem;
}

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

.footer-legal-link {
    color: #6B7280;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #10B981;
}

.footer-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* ===== account.css ===== */
/* Account Page Container */
.account-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(229, 231, 235, 0.8) 100%);
    padding: 2rem 0;
}

.account-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%2310B981" stroke-width="0.5" stroke-dasharray="5,5" /></svg>');
    opacity: 0.05;
    z-index: 0;
}

/* Account Container */
.account-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Account Header */
.account-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.account-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.account-subtitle {
    color: #6B7280;
    font-size: 1.1rem;
}

/* Account Stats Grid */
.account-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4B5563;
    font-size: 1rem;
    font-weight: 500;
}

/* Account Sections */
.account-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E5E7EB;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    background-color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input:disabled {
    background-color: #F3F4F6;
    cursor: not-allowed;
}

/* Table Styles */
.account-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.account-table th {
    background-color: #F9FAFB;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #4B5563;
    border-bottom: 2px solid #E5E7EB;
}

.account-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: #6B7280;
}

.account-table tr:hover td {
    background-color: #F9FAFB;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-active {
    background-color: #D1FAE5;
    color: #065F46;
}

.status-pending {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-completed {
    background-color: #DBEAFE;
    color: #1E40AF;
}

/* Action Buttons */
.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-primary {
    background-color: #10B981;
    color: white;
}

.action-primary:hover {
    background-color: #059669;
}

.action-secondary {
    background-color: #F3F4F6;
    color: #4B5563;
}

.action-secondary:hover {
    background-color: #E5E7EB;
}

/* Profile Section */
.profile-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
}

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

.setting-card {
    background-color: #F9FAFB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.setting-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.setting-description {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-title {
        font-size: 2rem;
    }

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

    .account-section {
        padding: 1.5rem;
    }

    .profile-section {
        grid-template-columns: 1fr;
    }

    .account-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #E5E7EB;
    border-top-color: #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error States */
.error-message {
    background-color: #FEE2E2;
    color: #991B1B;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.error-message i {
    margin-right: 0.5rem;
}

/* Success States */
.success-message {
    background-color: #D1FAE5;
    color: #065F46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.success-message i {
    margin-right: 0.5rem;
}

/* Admin-specific Styles */
.admin-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.admin-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.admin-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.admin-chart {
    height: 200px;
    margin-top: 1rem;
    position: relative;
}

/* User Management Styles */
.user-list {
    margin-top: 1rem;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 500;
    color: #374151;
}

.user-email {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Donation History Styles */
.donation-history {
    margin-top: 2rem;
}

.donation-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.donation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.donation-date {
    color: #6B7280;
    font-size: 0.875rem;
}

.donation-items {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.donation-item-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #4B5563;
}

/* Accessibility Styles */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .account-page {
        background: none;
        padding: 0;
    }

    .account-section {
        box-shadow: none;
        border: 1px solid #E5E7EB;
        break-inside: avoid;
    }

    .no-print {
        display: none;
    }
}

/* ===== sequoiaPromotion.css ===== */
/* Sequoia AI section styles */

.sequoia-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.sequoia-intro p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
}

.sequoia-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.sequoia-feature-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #059669;
}

.sequoia-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.sequoia-feature-card h3 {
  color: #059669;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.sequoia-feature-card p {
  color: #4B5563;
  line-height: 1.6;
}

.sequoia-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.sequoia-cta .btn-primary {
  display: inline-block;
  background: #059669;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sequoia-cta .btn-primary:hover {
  background: #047857;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sequoia-features {
    grid-template-columns: 1fr;
  }
  
  .sequoia-intro {
    padding: 0 1rem;
  }
}

/* Animation for feature cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sequoia-feature-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.sequoia-feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.sequoia-feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.sequoia-feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.sequoia-feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===== sequoiaPage.css ===== */
/* Sequoia AI Page Styles */

/* General Styles */
.sequoia-ai-page {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

.sequoia-ai-page h1, 
.sequoia-ai-page h2, 
.sequoia-ai-page h3 {
  color: #059669;
  margin-bottom: 1rem;
}

.sequoia-ai-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.sequoia-ai-page h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.sequoia-ai-page h3 {
  font-size: 1.5rem;
}

.sequoia-ai-page section {
  padding: 4rem 0;
}

.sequoia-ai-page section:nth-child(even) {
  background-color: #f9fafb;
}

/* Loading State */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #059669;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

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

/* Hero Section */
.sequoia-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e6fffa 100%);
  padding: 5rem 0;
  text-align: center;
}

.sequoia-hero-subtitle {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2rem;
}

.sequoia-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sequoia-hero-text {
  flex: 1;
  text-align: left;
}

.sequoia-hero-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.sequoia-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sequoia-hero-image img {
  max-width: 100%;
  height: auto;
}

.sequoia-hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #059669;
  color: white;
}

.btn-primary:hover {
  background: #047857;
}

.btn-secondary {
  background: white;
  color: #059669;
  border: 1px solid #059669;
}

.btn-secondary:hover {
  background: #f0fdf4;
}

/* Features Section */
.sequoia-features-section {
  background-color: white;
}

.sequoia-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sequoia-feature-box {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #059669;
}

.sequoia-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: #059669;
  margin-bottom: 1rem;
}

/* How It Works Section */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #059669;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Case Studies Section */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-card blockquote {
  font-style: italic;
  margin-top: 1rem;
  color: #6B7280;
  border-left: 3px solid #059669;
  padding-left: 1rem;
}

/* Demo Request Section */
.sequoia-demo-request {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  text-align: center;
}

.sequoia-demo-request h2,
.sequoia-demo-request h3 {
  color: white;
}

.sequoia-demo-request p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.demo-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.9);
}

.demo-form button {
  grid-column: span 2;
  background: white;
  color: #059669;
  border: none;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.demo-form button:hover {
  background: #f0fdf4;
  color: #047857;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sequoia-hero-content {
    flex-direction: column;
  }
  
  .sequoia-hero-image {
    order: -1;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .demo-form {
    grid-template-columns: 1fr;
  }
  
  .demo-form button {
    grid-column: auto;
  }
}
