/* Modern PUBG Generator - Main Styles */

/* Additional styles are in the main HTML file */
/* This file can be used for additional custom styles */

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-primary), var(--neon-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-primary);
}

/* Selection */
::selection {
    background: var(--neon-primary);
    color: #000;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--neon-primary);
    outline-offset: 2px;
}

/* Disabled state */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .container-main {
        padding: 10px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

