:root {
    --primary-color: #3B82F6;
    --primary-hover: #2563EB;
    --secondary-color: #1F2937;
    --accent-color: #10B981;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    overflow-x: hidden;
}

/* Custom Utilities */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-custom {
    background-color: white;
    color: #374151;
    border: 1px solid #e5e7eb;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: #f3f4f6;
    color: #111827;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Blobs */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.4;
}

.blob-1 {
    background-color: #93c5fd;
    top: -100px;
    left: -100px;
}

.blob-2 {
    background-color: #d8b4fe;
    bottom: -50px;
    right: -100px;
}

/* Version Badge */
.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Dashboard Preview */
.dashboard-container {
    position: relative;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    width: 100%;
    transition: transform 0.5s;
}

.dashboard-img:hover {
    transform: scale(1.01);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #f3f4f6;
    z-index: 10;
}

.badge-1 {
    top: -20px;
    right: -20px;
    animation: bounce 3s infinite;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-5%);
    }

    50% {
        transform: translateY(5%);
    }
}

/* Feature Cards */
.feature-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    background: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

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

.icon-primary {
    background: #dbeafe;
    color: var(--primary-color);
}

.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-green {
    background: #d1fae5;
    color: #059669;
}

/* Integration Section */
.code-block {
    background: #111827;
    border-radius: 1rem;
    padding: 1.5rem;
    font-family: 'Consolas', 'Monaco', monospace;
    color: #d1d5db;
    border: 1px solid #374151;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
}

.syntax-purple {
    color: #c084fc;
}

.syntax-blue {
    color: #60a5fa;
}

.syntax-green {
    color: #4ade80;
}

.syntax-yellow {
    color: #fde047;
}

.syntax-gray {
    color: #6b7280;
}

/* Stats/Admin Items */
.admin-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    text-align: center;
    height: 100%;
}

/* CTA */
.cta-box {
    background-color: var(--primary-color);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
    color: white;
    text-align: center;
}

.cta-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #9ca3af;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid #374151;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}
