/* Advanced Premium Styles - $4000 Quality */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Gradients */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --secondary-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa726 50%, #42a5f5 100%);
    --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #00d2ff 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
    --premium-gradient: linear-gradient(135deg, #8360c3 0%, #2ebf91 50%, #ffd700 100%);
    --neon-gradient: linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%);
    --cosmic-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    
    /* Advanced Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #1a1f3a;
    --bg-tertiary: #2d3561;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --text-accent: #4facfe;
    --text-gold: #ffd700;
    --border-color: rgba(255, 255, 255, 0.15);
    --border-glow: rgba(79, 172, 254, 0.5);
    
    /* Premium Shadows */
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(79, 172, 254, 0.4);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --blur-effect: blur(25px);
    
    /* Animation Variables */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Roboto', sans-serif;
    background: 
        radial-gradient(ellipse at top, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(249, 147, 251, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, #0f172a 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    animation: backgroundShift 20s infinite alternate;
}

/* Advanced Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(249, 147, 251, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 40%);
    animation: morphBackground 30s infinite ease-in-out;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(1px);
    animation: advancedFloat 25s infinite linear;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.particle:nth-child(1) {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    left: 10%;
    animation-delay: 0s;
    animation-duration: 30s;
    filter: blur(2px);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
}

.particle:nth-child(2) {
    width: 80px;
    height: 80px;
    background: var(--secondary-gradient);
    left: 70%;
    animation-delay: 5s;
    animation-duration: 35s;
    filter: blur(1.5px);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.particle:nth-child(3) {
    width: 150px;
    height: 150px;
    background: var(--accent-gradient);
    left: 30%;
    animation-delay: 10s;
    animation-duration: 40s;
    filter: blur(3px);
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.25);
}

.particle:nth-child(4) {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    left: 90%;
    animation-delay: 15s;
    animation-duration: 25s;
    filter: blur(1px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.particle:nth-child(5) {
    width: 200px;
    height: 200px;
    background: var(--neon-gradient);
    left: 50%;
    animation-delay: 20s;
    animation-duration: 45s;
    filter: blur(4px);
    opacity: 0.4;
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.2);
}

/* Advanced Animations */
@keyframes backgroundShift {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
    100% { filter: hue-rotate(0deg); }
}

@keyframes morphBackground {
    0% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(0.9); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes advancedFloat {
    0% { 
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 0.7;
        transform: translateY(-10vh) rotate(324deg) scale(1);
    }
    100% { 
        transform: translateY(-20vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
}

.logo i {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.premium-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: glow 2s infinite alternate;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Form Section */
.form-section {
    animation: slideInUp 0.8s ease-out;
}

.form-card, .results-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: var(--blur-effect);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 
        var(--shadow-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.form-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 
        var(--shadow-heavy),
        var(--shadow-neon),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--border-glow);
}

.form-card:hover::before {
    left: 100%;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-header i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-header p {
    color: var(--text-secondary);
}

/* Form Styles */
.sensitivity-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--text-accent);
}

select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

select:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
    transform: scale(1.02);
}

select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Finger Options */
.finger-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.finger-option {
    position: relative;
}

.finger-option input[type="radio"] {
    display: none;
}

.finger-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    gap: 8px;
}

.finger-option label:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
    border-color: var(--text-accent);
}

.finger-option input[type="radio"]:checked + label {
    background: var(--accent-gradient);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.finger-option label i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.finger-option label span {
    font-weight: 600;
    font-size: 1.1rem;
}

.finger-option label small {
    opacity: 0.8;
    font-size: 0.8rem;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Results Section */
.results-section {
    animation: fadeInUp 0.8s ease-out;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
}

.results-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.device-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Sensitivity Grid */
.sensitivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sensitivity-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.sensitivity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.sensitivity-item.general { border-left-color: #4ade80; }
.sensitivity-item.red-dot { border-left-color: #ef4444; }
.sensitivity-item.scope-2x { border-left-color: #06b6d4; }
.sensitivity-item.scope-4x { border-left-color: #8b5cf6; }
.sensitivity-item.sniper { border-left-color: #f59e0b; }
.sensitivity-item.free-look { border-left-color: #ec4899; }

.sensitivity-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sensitivity-label i {
    font-size: 1.2rem;
}

.sensitivity-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sensitivity-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.sensitivity-progress {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-out;
}

/* Additional Tips */
.additional-tips {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.additional-tips h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional-tips h3 i {
    color: var(--warning-color);
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.tip-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-gradient);
}

.tip-item strong {
    color: var(--text-accent);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 1s ease-out;
}

.developer-credit a {
    color: var(--text-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copyright {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Premium Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 60%),
        linear-gradient(45deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.loading-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 10;
}

.spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 30px;
}

.spinner::before,
.spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: spinPulse 2s linear infinite;
}

.spinner::before {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid var(--text-accent);
    border-right: 4px solid var(--text-accent);
}

.spinner::after {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--gold-gradient);
    border-left: 3px solid var(--gold-gradient);
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.loading-spinner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-weight: 500;
    animation: textGlow 2s infinite alternate;
}

.loading-bar {
    width: 350px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-progress {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
    width: 0%;
    animation: premiumLoadingProgress 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    position: relative;
    overflow: hidden;
}

.loading-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 1.5s infinite;
}

/* Loading Status Messages */
.loading-status {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: statusFade 3s infinite;
}

/* Premium Loading Animations */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes spinPulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(79, 172, 254, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(79, 172, 254, 0.6), 0 0 25px rgba(79, 172, 254, 0.3);
    }
}

@keyframes premiumLoadingProgress {
    0% { 
        width: 0%; 
        opacity: 0.8;
    }
    25% { 
        width: 30%; 
        opacity: 1;
    }
    50% { 
        width: 60%; 
        opacity: 0.9;
    }
    75% { 
        width: 85%; 
        opacity: 1;
    }
    100% { 
        width: 100%; 
        opacity: 0.8;
    }
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes statusFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 80%; }
    100% { width: 100%; }
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2.5rem;
    }
    
    .form-card, .results-card {
        padding: 20px;
    }
    
    .finger-options {
        grid-template-columns: 1fr;
    }
    
    .sensitivity-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-content {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .loading-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .results-header h2 {
        font-size: 1.5rem;
    }
}

/* Security Alert Styles */
.security-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.alert-content {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    backdrop-filter: blur(10px);
}

.alert-content i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-content span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gradient);
}
