body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-primary {
    @apply px-8 py-4 bg-brand-accent text-white rounded-xl font-bold text-lg transition-all duration-200 hover:bg-opacity-90 hover:scale-105 hover:shadow-xl focus:outline-none focus:ring-4 focus:ring-brand-accent/50 inline-block;
}

.btn-primary-large {
    @apply px-10 py-5 bg-brand-accent text-white rounded-xl font-black text-xl md:text-2xl transition-all duration-200 hover:bg-opacity-90 hover:scale-105 hover:shadow-2xl focus:outline-none focus:ring-4 focus:ring-brand-accent/50 inline-block;
}

.form-input {
    @apply w-full px-6 py-4 bg-white border-2 border-gray-200 rounded-xl focus:outline-none focus:border-brand-accent transition-all text-lg font-medium;
}

*:focus-visible {
    outline: 2px solid #0097b2;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}