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

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

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

.pt-24 {
    padding-top: 6rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-\[1200px\] {
    max-width: 1200px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.mb-16 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.inline-flex {
    display: inline-flex;
}

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

.gap-2 {
    gap: 0.5rem;
}

.bg-\[\#00d9ff\]\/10 {
    background-color: rgba(0, 217, 255, 0.1);
}

.border {
    border-width: 1px;
}

.border-\[\#00d9ff\]\/20 {
    border-color: rgba(0, 217, 255, 0.2);
}

.rounded-full {
    border-radius: 9999px;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.text-\[\#00d9ff\] {
    color: #00d9ff;
}

.text-sm {
    font-size: 0.875rem;
}

.text-5xl {
    font-size: 3rem;
}

.md\:text-6xl {
    font-size: 3.75rem;
}

.font-\[\'Poppins\'\] {
    font-family: 'Poppins', sans-serif;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-\[\#00d9ff\] {
    --tw-gradient-stops: var(--tw-gradient-from), #00d9ff, var(--tw-gradient-to, rgba(0, 217, 255, 0));
}

.to-white {
    --tw-gradient-to: #ffffff;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.text-xl {
    font-size: 1.25rem;
}

.text-gray-400 {
    color: #9ca3af;
}

.max-w-3xl {
    max-width: 48rem;
}

.grid {
    display: grid;
}

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

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

.gap-8 {
    gap: 2rem;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.rounded-2xl {
    border-radius: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.border-b {
    border-bottom-width: 1px;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

.hover\:text-\[\#00d9ff\]:hover {
    color: #00d9ff;
}

.transition-colors {
    transition: color 0.3s ease;
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.mt-12 {
    margin-top: 3rem;
}

.hover\:underline:hover {
    text-decoration: underline;
}

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

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

@media (max-width: 640px) {
    .md\:grid-cols-2,
    .lg\:grid-cols-4 {
        grid-template-columns: 1fr;
    }
}