/*
Theme Name: AI Code With
Theme URI: https://aicodewith.cn
Author: AI Code With Team
Author URI: https://aicodewith.cn
Description: Claude Code 官方镜像服务主题
Version: 1.0
License: GPL v2 or later
Text Domain: aicodewith
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.5;
    color: #111827;
    background-color: #ffffff;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* Colors */
.text-gray-900 { color: #111827; }
.text-gray-800 { color: #1f2937; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-500 { color: #3b82f6; }
.text-white { color: #ffffff; }
.text-green-600 { color: #16a34a; }
.text-orange-600 { color: #ea580c; }
.text-red-600 { color: #dc2626; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-900 { background-color: #111827; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-orange-50 { background-color: #fff7ed; }

/* Layout */
.min-h-screen {
    min-height: 100vh;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 { z-index: 10; }
.z-60 { z-index: 60; }
.-z-10 { z-index: -10; }

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
    text-decoration: none;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-10 { margin-right: 2.5rem; }
.ml-1 { margin-left: 0.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

@media (min-width: 640px) {
    .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 768px) {
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1280px) {
    .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

.leading-tight { line-height: 1.25; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-relaxed { line-height: 1.625; }

.tracking-wider { letter-spacing: 0.05em; }

.text-balance {
    text-wrap: balance;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

.whitespace-pre {
    white-space: pre;
}

.whitespace-nowrap {
    white-space: nowrap;
}

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-t { border-top-width: 1px; }
.border-solid { border-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-700 { border-color: #374151; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-300 { border-color: #93c5fd; }
.border-blue-500 { border-color: #3b82f6; }
.border-green-400 { border-color: #4ade80; }
.border-orange-100 { border-color: #fed7aa; }
.border-orange-200 { border-color: #fdba74; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }

/* Effects */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.opacity-10 { opacity: 0.1; }
.opacity-15 { opacity: 0.15; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }

.blur-3xl { filter: blur(64px); }

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover States */
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-blue-800:hover { background-color: #1e40af; }
.hover\:bg-primary\/90:hover { background-color: rgba(37, 99, 235, 0.9); }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-gray-800:hover { color: #1f2937; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:font-semibold:hover { font-weight: 600; }
.hover\:border-blue-300:hover { border-color: #93c5fd; }
.hover\:shadow-sm:hover { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Components */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Header */
header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    cursor: pointer;
}

/* Section specific styles */
.hero-gradient {
    background: linear-gradient(to bottom right, #eff6ff, #ffffff, #eef2ff);
}

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

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

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

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

.animate-fall {
    animation: fall linear infinite;
}

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

/* Responsive utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .sm\:w-auto { width: auto; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:space-x-4 > * + * { margin-left: 1rem; }
    .sm\:space-y-0 > * + * { margin-top: 0; }
    .sm\:mt-8 { margin-top: 2rem; }
    .sm\:text-sm { font-size: 0.875rem; }
    .sm\:max-w-none { max-width: none; }
}

@media (min-width: 768px) {
    .md\:w-8 { width: 2rem; }
    .md\:h-8 { height: 2rem; }
    .md\:w-12 { width: 3rem; }
    .md\:h-12 { height: 3rem; }
    .md\:w-16 { width: 4rem; }
    .md\:h-16 { height: 4rem; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:mt-0 { margin-top: 0; }
    .md\:leading-8 { line-height: 2rem; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
}

@media (max-width: 639px) {
    .max-w-xs { max-width: 20rem; }
}

@media (max-width: 767px) {
    .max-w-2xl { max-width: 42rem; }
}

@media (max-width: 1023px) {
    .max-w-3xl { max-width: 48rem; }
    .max-w-4xl { max-width: 56rem; }
    .max-w-5xl { max-width: 64rem; }
}

@media (max-width: 1279px) {
    .max-w-6xl { max-width: 72rem; }
    .max-w-7xl { max-width: 80rem; }
}

/* Width utilities */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-1 { width: 0.25rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-40 { width: 10rem; }
.w-60 { width: 15rem; }
.w-80 { width: 20rem; }
.w-fit { width: fit-content; }

/* Height utilities */
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-60 { height: 15rem; }
.h-80 { height: 20rem; }
.h-full { height: 100%; }
.h-\[40px\] { height: 40px; }
.h-\[180px\] { height: 180px; }

/* Position utilities */
.top-0 { top: 0; }
.top-10 { top: 2.5rem; }
.top-20 { top: 5rem; }
.top-40 { top: 10rem; }
.top-60 { top: 15rem; }
.right-20 { right: 5rem; }
.right-32 { right: 8rem; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.bottom-32 { bottom: 8rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-10 { left: 2.5rem; }
.left-20 { left: 5rem; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.right-1\/3 { right: 33.333333%; }
.right-1\/4 { right: 25%; }

/* Transform utilities */
.transform { transform: var(--tw-transform); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.rotate-45 { transform: rotate(45deg); }
.scale-105 { transform: scale(1.05); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* List */
.list-style-none { list-style: none; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Ring */
.ring-1 { box-shadow: 0 0 0 1px; }
.ring-blue-200 { --tw-ring-color: #bfdbfe; }

/* Fill */
.fill-current { fill: currentColor; }

/* Clip path */
.clip-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Gradient backgrounds */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-blue-50 { --tw-gradient-from: #eff6ff; }
.from-blue-100 { --tw-gradient-from: #dbeafe; }
.from-blue-400 { --tw-gradient-from: #60a5fa; }
.from-blue-600 { --tw-gradient-from: #2563eb; }
.from-blue-700 { --tw-gradient-from: #1d4ed8; }
.from-transparent { --tw-gradient-from: transparent; }
.via-white { --tw-gradient-via: #ffffff; }
.via-blue-200 { --tw-gradient-via: #bfdbfe; }
.via-indigo-200 { --tw-gradient-via: #c7d2fe; }
.to-white { --tw-gradient-to: #ffffff; }
.to-blue-100 { --tw-gradient-to: #dbeafe; }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.to-blue-800 { --tw-gradient-to: #1e40af; }
.to-indigo-50 { --tw-gradient-to: #eef2ff; }
.to-indigo-400 { --tw-gradient-to: #818cf8; }
.to-transparent { --tw-gradient-to: transparent; }

/* Primary button styles */
.bg-primary {
    background-color: #2563eb;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(37, 99, 235, 0.9);
}

.text-primary-foreground {
    color: #ffffff;
}

/* Background patterns */
.bg-pattern-grid {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Custom components */
.floating-dot {
    position: absolute;
    border-radius: 50%;
    background-color: #60a5fa;
}

.code-symbol {
    position: absolute;
    color: #2563eb;
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

/* Additional utilities */
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }

/* Min width */
.min-w-\[80px\] { min-width: 80px; }

/* Background hover states */
.hover\:from-blue-700:hover { --tw-gradient-from: #1d4ed8; }
.hover\:to-blue-800:hover { --tw-gradient-to: #1e40af; }

/* Dark mode support - disabled to ensure light theme */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #2563eb;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

/* Focus states */
.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:ring-2:focus-visible {
    box-shadow: 0 0 0 2px;
}

.focus-visible\:ring-ring:focus-visible {
    box-shadow: 0 0 0 2px #2563eb;
}

.focus-visible\:ring-offset-2:focus-visible {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #2563eb;
}

/* Disabled states */
.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

/* SVG utilities */
.\[&_svg\]\:pointer-events-none svg {
    pointer-events: none;
}

.\[&_svg\]\:size-4 svg {
    width: 1rem;
    height: 1rem;
}

.\[&_svg\]\:shrink-0 svg {
    flex-shrink: 0;
}

/* Responsive max-width */
.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Header backdrop support */
.supports-\[backdrop-filter\]\:bg-white\/75:supports(backdrop-filter) {
    background-color: rgba(255, 255, 255, 0.75);
}

/* Z-index utilities */
.z-\[60\] { z-index: 60; }

/* Custom transitions */
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background utilities */
.bg-muted\/50 {
    background-color: rgba(249, 250, 251, 0.5);
}

.bg-background {
    background-color: #ffffff;
}

/* Text utilities */
.text-foreground {
    color: #111827;
}

.text-muted-foreground {
    color: #6b7280;
}

/* Border utilities */
.ring-offset-background {
    --tw-ring-offset-color: #ffffff;
}

/* Triangle alert icon */
.lucide {
    width: 24px;
    height: 24px;
}

.lucide-check {
    color: currentColor;
}

.lucide-x {
    color: currentColor;
}

.lucide-triangle-alert {
    color: currentColor;
}

/* Comparison table specific */
.comparison-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
}

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

/* FAQ Accordion */
.faq-item {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-button {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    focus: outline-none;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    transform: rotate(0);
    transition: transform 0.2s;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

/* Blog card */
.blog-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: #111827;
    color: #ffffff;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}