:root {
    --primary: #9333ea;
    --secondary: #ec4899;
    --dark: #0f0f1e;
    --darker: #080811;
    --light: #ffffff;
    --gradient: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    --gradient-hover: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
    color: var(--light);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.flex {
    display: flex;
}

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

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

.p-4 {
    padding: 1rem;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

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

.overflow-hidden {
    overflow: hidden;
}

.pointer-events-none {
    pointer-events: none;
}

.-top-40 {
    top: -10rem;
}

.-right-40 {
    right: -10rem;
}

.-bottom-40 {
    bottom: -10rem;
}

.-left-40 {
    left: -10rem;
}

.w-80 {
    width: 20rem;
}

.h-80 {
    height: 20rem;
}

.w-96 {
    width: 24rem;
}

.h-96 {
    height: 24rem;
}

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

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

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
}

.border {
    border-width: 1px;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.p-8 {
    padding: 2rem;
}

.w-full {
    width: 100%;
}

.max-w-md {
    max-width: 28rem;
}

.top-1\/2 {
    top: 50%;
}

.left-1\/2 {
    left: 50%;
}

.transform {
    transform: var(--tw-transform);
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
}

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

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

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

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

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

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

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

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

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

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

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

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

.-top-2 {
    top: -0.5rem;
}

.-right-2 {
    right: -0.5rem;
}

.-bottom-2 {
    bottom: -0.5rem;
}

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

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.text-gray-300 {
    color: #d1d5db;
}

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

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

@media (max-width: 768px) {
    .p-8 {
        padding: 1.5rem;
    }
    
    .max-w-md {
        max-width: 100%;
    }
}
