/* TI LAJAN < GWO LAJAN - Custom Styles */

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: rgba(247, 200, 76, 0.3);
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: rgba(247, 200, 76, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(247, 200, 76, 0.5);
}

/* Gradient text fallback */
.text-gradient {
    background: linear-gradient(to right, #F7C84C, #FDC830);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow effect */
.glow {
    box-shadow: 0 0 30px rgba(247, 200, 76, 0.3);
}

.glow:hover {
    box-shadow: 0 0 50px rgba(247, 200, 76, 0.5);
}

/* Tab bar */
.tab-btn {
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.tab-btn:hover {
    color: rgba(247, 200, 76, 0.8);
}
.tab-btn.active {
    background: rgba(247, 200, 76, 0.15);
    color: #F7C84C;
}

.tab-content.hidden {
    display: none;
}

/* Focus styles */
input:focus, button:focus {
    outline: none;
}

/* Loading shimmer for future use */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(247, 200, 76, 0.05), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}
