
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 171, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 171, 0, 0.6);
    }
}

.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

.gradient-gold {
    background: linear-gradient(135deg, #FFAB00 0%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.overlay-dark {
    position: relative;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 9, 11, 0.7) 0%,
        rgba(9, 9, 11, 0.9) 100%
    );
    z-index: 1;
}

.overlay-dark > * {
    position: relative;
    z-index: 2;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: #FFAB00;
    box-shadow: 0 0 30px rgba(255, 171, 0, 0.2);
}


.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #FFAB00;
    box-shadow: 0 0 0 3px rgba(255, 171, 0, 0.1);
}

::placeholder {
    color: #52525b;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #52525b;
}

::-ms-input-placeholder {
    color: #52525b;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFAB00;
}

.spinner {
    border: 3px solid rgba(255, 171, 0, 0.1);
    border-top: 3px solid #FFAB00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .text-responsive {
        font-size: 0.875rem;
    }
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

