* {
    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-32 {
    margin-bottom: 8rem;
}

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

.mb-8 {
    margin-bottom: 2rem;
}

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

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

.mb-3 {
    margin-bottom: 0.75rem;
}

.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;
}

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

.text-white {
    color: #ffffff;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

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

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

.border {
    border-width: 1px;
}

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

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

.p-8 {
    padding: 2rem;
}

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

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

.flex {
    display: flex;
}

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

.md\:flex-row {
    flex-direction: row;
}

.gap-6 {
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}

.md\:w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

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

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

.to-\[\#00b8d4\]\/20 {
    --tw-gradient-to: rgba(0, 184, 212, 0.2);
}

.rounded-xl {
    border-radius: 0.75rem;
}

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

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

.flex-shrink-0 {
    flex-shrink: 0;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

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

.flex-1 {
    flex: 1 1 0%;
}

.text-2xl {
    font-size: 1.5rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.gap-2 {
    gap: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    border: none;
}

.button-primary {
    background: linear-gradient(to right, #00d9ff, #00b8d4);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.button-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 217, 255, 0.3);
}

.ml-2 {
    margin-left: 0.5rem;
}

.grid {
    display: grid;
}

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

.gap-6 {
    gap: 1.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.cursor-pointer {
    cursor: pointer;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

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

.text-lg {
    font-size: 1.125rem;
}

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

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

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

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

@media (max-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}