* { margin: 0; padding: 0; box-sizing: border-box; transition: all 0.2s ease;}

html {
    scroll-behavior: smooth;
}

body {
    cursor: url('./cursor.svg') 4 3, auto;
}

a,
button,
input,
select,
textarea,
[role="button"] {
    cursor: url('./cursor-click.svg') 4 3, pointer;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #6C63FF, #FF6584, #42E2B8);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
    color: white;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card h2 {
    margin-bottom: 10px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 15px;
}

.step h3 {
    margin-bottom: 8px;
}

.footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta {
    margin-top: 30px;
    text-align: center;
}

.cta button {
    background: white;
    color: #6C63FF;
    border: none;
    padding: 12px 25px;
    border-radius: 999px;
    font-weight: 600;
    cursor: url('./cursor-click.svg') 4 3, pointer;
    transition: all 0.2s ease;
}

.cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.navbar {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.navbar a {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-weight: 600;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.navbar a:hover {
    background: white;
    color: #6C63FF;
    transform: scale(1.1);
}