html {
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #6d28d9 0%, #3b82f6 100%);
}

.glow {
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.5);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.active:after {
    width: 100%;
}

.discord-btn:hover {
    background-color: #5865F2 !important;
}

.discord-ticket-btn {
    background: #fff !important;
    color: #5865F2 !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    gap: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.discord-ticket-btn:hover {
    background: #f3f4f6 !important;
    color: #3b82f6 !important;
}

.discord-ticket-btn i {
    color: #5865F2 !important;
    background: #fff;
    border-radius: 50%;
    font-size: 1.2em;
}

.modal { 
    display: none; 
}

.modal.show { 
    display: flex; 
}

.copy-button.copied { 
    background: #059669 !important; 
    color: #fff !important; 
}

/* Custom Slider Styles */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #6d28d9 0%, #3b82f6 100%) 0/var(--range-progress, 0%) 100% no-repeat, #374151;
    border-radius: 5px;
    outline: none;
    margin: 24px 0 10px 0;
    position: relative;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px #6d28d9cc;
    border: 2px solid #e5e7eb;
    z-index: 2;
    margin-top: -5px;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px #6d28d9cc;
    z-index: 2;
    margin: -5px 0 0 0;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 5px;
    background: transparent;
}

input[type="range"]::-moz-range-track {
    height: 10px;
    border-radius: 5px;
    background: transparent;
}

input[type="range"]::-ms-fill-lower {
    background: #6d28d9;
}

input[type="range"]::-ms-fill-upper {
    background: #3b82f6;
}

input[type="range"]:focus {
    outline: none;
} 