@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #030712;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-primary-dark {
    background: #b9e500;
    color: #0D1425;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
    outline: none;
}

.btn-primary-dark:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.btn-primary-dark:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary-light {
    background: #b9e500;
    color: #0D1425;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    outline: none;
    width: fit-content;
}

.btn-primary-light i {
    color: #0D1425;
}

.btn-primary-light:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 4px 12px rgba(185, 229, 0, 0.3);
}

.btn-primary-light:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary-dark {
    background: transparent;
    color: #00B4D8;
    border: 2px solid rgba(0, 180, 216, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
    outline: none;
}

.btn-secondary-dark:hover:not(:disabled) {
    background: rgba(0, 180, 216, 0.1);
    border-color: #00B4D8;
    transform: translateY(-2px);
}

.btn-secondary-dark:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary-light {
    background: transparent;
    color: #0D1425;
    border: 2px solid rgba(13, 20, 37, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    outline: none;
    width: fit-content;
}

.btn-secondary-light i {
    color: #0D1425;
}

.btn-secondary-light:hover:not(:disabled) {
    background: rgba(13, 20, 37, 0.05);
    border-color: #0D1425;
    transform: translateY(-2px);
}

.btn-secondary-light:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-tertiary-dark {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #374151;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    font-family: inherit;
    outline: none;
}

.btn-tertiary-dark:hover:not(:disabled) {
    color: #ffffff;
    border-color: #4b5563;
    background: rgba(255, 255, 255, 0.05);
}

.btn-tertiary-dark:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-tertiary-light {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    font-family: inherit;
    outline: none;
}

.btn-tertiary-light:hover:not(:disabled) {
    color: #1e293b;
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.btn-tertiary-light:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.link-dark {
    color: #00B4D8;
    text-decoration: none;
    transition: all 0.15s ease;
}

.link-dark:hover {
    color: #22d3ee;
    text-decoration: underline;
}

.link-light {
    color: #0369a1;
    text-decoration: none;
    transition: all 0.15s ease;
}

.link-light:hover {
    color: #0c4a6e;
    text-decoration: underline;
}