/* ============================================
   ULTRA-PREMIUM SETTINGS PAGE - CLEAN VERSION
   Next-Level Stunning Design 🚀✨
   Prefix: msdssss
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === ULTRA VARIABLES === */
:root {
    --msdssss-orange: #ff7a00;
    --msdssss-orange-light: #ff9533;
    --msdssss-orange-dark: #e66a00;
    --msdssss-white: #ffffff;
    --msdssss-cream: #f5e7da;
    --msdssss-dark: #0d0d0d;
    --msdssss-dark-light: #1a1a1a;
    --msdssss-dark-card: #181818;
    
    --msdssss-gradient-fire: linear-gradient(135deg, #ff7a00 0%, #ff9533 50%, #ffb366 100%);
    --msdssss-gradient-dark: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
    --msdssss-gradient-card: linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(34, 34, 34, 0.95));
    --msdssss-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    
    --msdssss-shadow-ultra: 0 30px 90px rgba(0, 0, 0, 0.6);
    --msdssss-shadow-mega: 0 20px 60px rgba(0, 0, 0, 0.5);
    --msdssss-shadow-card: 0 15px 45px rgba(0, 0, 0, 0.4);
    --msdssss-shadow-orange: 0 15px 50px rgba(255, 122, 0, 0.4);
    --msdssss-shadow-orange-intense: 0 20px 70px rgba(255, 122, 0, 0.6);
    
    --msdssss-transition-smooth: all 0.3s ease;
    --msdssss-transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --msdssss-transition-elastic: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* === ULTRA WRAPPER === */
.msdssss-ultra-wrapper {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 149, 51, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: var(--msdssss-white);
    font-family: 'Inter', sans-serif;
    padding: clamp(50px, 8vw, 100px) 0;
    overflow-x: hidden;
}

/* === ADVANCED PARTICLE SYSTEM === */
.msdssss-particles-system {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.msdssss-particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.msdssss-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent 70%);
    filter: blur(60px);
    animation: msdssssOrbitFloat 25s ease-in-out infinite;
}

.msdssss-orb-1 {
    width: 400px;
    height: 400px;
    left: 15%;
    top: 20%;
    animation-delay: 0s;
}

.msdssss-orb-2 {
    width: 500px;
    height: 500px;
    right: 10%;
    bottom: 15%;
    animation-delay: -8s;
}

.msdssss-orb-3 {
    width: 300px;
    height: 300px;
    left: 60%;
    top: 50%;
    animation-delay: -16s;
}

.msdssss-float-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--msdssss-orange), var(--msdssss-orange-light));
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
    animation: msdssssParticleFloat 20s ease-in-out infinite;
}

.msdssss-float-particle:nth-child(2) { animation-delay: -4s; }
.msdssss-float-particle:nth-child(3) { animation-delay: -8s; }
.msdssss-float-particle:nth-child(4) { animation-delay: -12s; }
.msdssss-float-particle:nth-child(5) { animation-delay: -16s; }
.msdssss-float-particle:nth-child(6) { animation-delay: -20s; }

.msdssss-gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(255, 122, 0, 0.05), transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 149, 51, 0.04), transparent 60%);
    animation: msdssssMeshPulse 15s ease-in-out infinite;
}

@keyframes msdssssOrbitFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.45;
    }
}

@keyframes msdssssParticleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(30px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(-40px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-70px) translateX(20px);
        opacity: 0.5;
    }
}

@keyframes msdssssMeshPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* === ULTRA CONTAINER === */
.msdssss-ultra-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* === PREMIUM HEADER === */
.msdssss-premium-header {
    position: relative;
    margin-bottom: clamp(40px, 6vw, 70px);
    padding: clamp(35px, 5vw, 50px);
    border-radius: 25px;
    overflow: hidden;
}

.msdssss-header-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--msdssss-gradient-card);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.msdssss-header-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.msdssss-header-main {
    display: flex;
    align-items: center;
    gap: 25px;
}

.msdssss-icon-badge {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--msdssss-gradient-fire);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--msdssss-white);
    box-shadow: var(--msdssss-shadow-orange);
    animation: msdssssIconPulse 3s ease-in-out infinite;
}

.msdssss-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--msdssss-orange);
    border-radius: 20px;
    transform: translate(-50%, -50%);
    animation: msdssssRingExpand 2s ease-out infinite;
}

.msdssss-ring-2 {
    animation-delay: 1s;
}

@keyframes msdssssIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--msdssss-shadow-orange);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--msdssss-shadow-orange-intense);
    }
}

@keyframes msdssssRingExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.msdssss-header-content {
    flex: 1;
}

.msdssss-mega-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.msdssss-title-line {
    display: block;
    color: var(--msdssss-white);
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.3);
}

.msdssss-gradient-text {
    background: var(--msdssss-gradient-fire);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: msdssssGradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes msdssssGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.msdssss-mega-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.msdssss-mega-subtitle i {
    color: var(--msdssss-orange);
}

.msdssss-header-stats {
    display: flex;
    gap: 15px;
}

.msdssss-stat-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--msdssss-orange);
    backdrop-filter: blur(10px);
    transition: var(--msdssss-transition-smooth);
}

.msdssss-stat-mini:hover {
    background: rgba(255, 122, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.msdssss-header-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 122, 0, 0.15), transparent 70%);
    transform: translateX(-50%);
    filter: blur(40px);
    z-index: -1;
    animation: msdssssHeaderGlow 4s ease-in-out infinite;
}

@keyframes msdssssHeaderGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* === PREMIUM GRID === */
.msdssss-premium-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(25px, 4vw, 35px);
    align-items: start;
}

/* === PREMIUM CARDS - CLEAN & CRISPY === */
.msdssss-premium-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: clamp(25px, 4vw, 35px);
    background: var(--msdssss-gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--msdssss-transition-smooth);
}

.msdssss-card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.msdssss-premium-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(30, 30, 30, 1), rgba(40, 40, 40, 1));
    border-color: rgba(255, 122, 0, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 122, 0, 0.3),
        0 0 30px rgba(255, 122, 0, 0.2);
}

.msdssss-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
    pointer-events: none;
}

.msdssss-premium-card:hover .msdssss-card-shine {
    left: 100%;
}

.msdssss-card-glow-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.4),
        rgba(255, 149, 51, 0.4),
        rgba(255, 122, 0, 0.4)
    );
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(2px);
}

.msdssss-premium-card:hover .msdssss-card-glow-border {
    opacity: 1;
}

/* === CARD HEADER === */
.msdssss-premium-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(22px, 3vw, 28px) clamp(22px, 3vw, 30px);
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
    background: rgba(255, 122, 0, 0.03);
    transition: background 0.3s ease;
}

.msdssss-premium-card:hover .msdssss-premium-header-card {
    background: rgba(255, 122, 0, 0.08);
}

.msdssss-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.msdssss-premium-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.3rem;
    color: var(--msdssss-orange);
    overflow: hidden;
}

.msdssss-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 122, 0, 0.15);
    border: 2px solid rgba(255, 122, 0, 0.3);
    border-radius: 15px;
    transition: var(--msdssss-transition-smooth);
}

.msdssss-premium-icon:hover .msdssss-icon-bg {
    background: rgba(255, 122, 0, 0.25);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}

.msdssss-premium-icon i {
    position: relative;
    z-index: 2;
}

.msdssss-premium-title {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--msdssss-white);
    margin: 0;
    letter-spacing: -0.5px;
}

.msdssss-premium-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 3px 0 0 0;
    font-weight: 500;
}

.msdssss-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2ed573;
}

.msdssss-badge-dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    animation: msdssssPulseGlow 2s ease-in-out infinite;
}

@keyframes msdssssPulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(46, 213, 115, 0);
    }
}

.msdssss-notification-count {
    padding: 8px 16px;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--msdssss-orange);
}

/* === CARD BODY === */
.msdssss-premium-body {
    padding: clamp(25px, 4vw, 35px) clamp(22px, 3vw, 30px);
}

/* === PREMIUM FORM === */
.msdssss-input-group {
    margin-bottom: clamp(20px, 3vw, 25px);
}

.msdssss-premium-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--msdssss-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.msdssss-required-star {
    color: #ff4757;
    font-size: 1.1rem;
}

.msdssss-premium-input-wrapper,
.msdssss-premium-select-wrapper {
    position: relative;
}

.msdssss-premium-input,
.msdssss-premium-select {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(24, 24, 24, 0.9);
    border: 2px solid rgba(255, 122, 0, 0.2);
    border-radius: 15px;
    color: var(--msdssss-white);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--msdssss-transition-smooth);
    font-family: 'Inter', sans-serif;
}

.msdssss-premium-input:focus,
.msdssss-premium-select:focus {
    outline: none;
    border-color: var(--msdssss-orange);
    background: rgba(24, 24, 24, 1);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1), 0 10px 30px rgba(255, 122, 0, 0.2);
    transform: translateY(-2px);
}

.msdssss-input-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--msdssss-orange);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.msdssss-select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    pointer-events: none;
    transition: var(--msdssss-transition-smooth);
}

.msdssss-premium-select:focus + .msdssss-select-arrow {
    color: var(--msdssss-orange);
    transform: translateY(-50%) rotate(180deg);
}

.msdssss-input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--msdssss-gradient-fire);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.msdssss-premium-input:focus ~ .msdssss-input-glow,
.msdssss-premium-select:focus ~ .msdssss-input-glow {
    width: 100%;
}

.msdssss-premium-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.msdssss-premium-input.msdssss-error {
    border-color: #ff4757;
    animation: msdssssShakeError 0.4s ease;
}

@keyframes msdssssShakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.msdssss-error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #ff4757;
    font-size: 0.85rem;
    font-weight: 600;
}

.msdssss-input-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

.msdssss-input-hint i {
    color: var(--msdssss-orange);
}

/* === PASSWORD STRENGTH === */
.msdssss-password-strength {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.msdssss-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.4s ease;
    background: #ff4757;
}

.msdssss-strength-bar.msdssss-weak {
    width: 33%;
    background: linear-gradient(90deg, #ff4757, #ff6b7a);
}

.msdssss-strength-bar.msdssss-medium {
    width: 66%;
    background: linear-gradient(90deg, #ffa502, #ffb750);
}

.msdssss-strength-bar.msdssss-strong {
    width: 100%;
    background: linear-gradient(90deg, #2ed573, #7bed9f);
}

/* === PREMIUM TOGGLES === */
.msdssss-premium-toggles {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.msdssss-premium-toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: rgba(34, 34, 34, 0.6);
    border: 1px solid rgba(255, 122, 0, 0.1);
    border-radius: 18px;
    transition: var(--msdssss-transition-smooth);
    cursor: pointer;
}

.msdssss-premium-toggle-item:hover {
    background: rgba(45, 45, 45, 1);
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.msdssss-toggle-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.msdssss-toggle-icon-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--msdssss-white);
}

.msdssss-icon-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.msdssss-icon-yellow {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.msdssss-icon-green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.msdssss-icon-purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.msdssss-icon-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.msdssss-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: inherit;
    animation: msdssssIconPulseWave 2s ease-out infinite;
}

@keyframes msdssssIconPulseWave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.msdssss-toggle-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--msdssss-white);
    margin: 0 0 4px 0;
}

.msdssss-toggle-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* === PREMIUM SWITCH === */
.msdssss-premium-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 32px;
    flex-shrink: 0;
}

.msdssss-premium-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.msdssss-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--msdssss-transition-bounce);
    border-radius: 32px;
}

.msdssss-switch-button {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 2px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    transition: var(--msdssss-transition-bounce);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.msdssss-switch-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--msdssss-orange);
    border-radius: 50%;
    transition: var(--msdssss-transition-smooth);
    opacity: 0;
}

.msdssss-premium-switch input:checked + .msdssss-switch-slider {
    background: var(--msdssss-gradient-fire);
    border-color: var(--msdssss-orange);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}

.msdssss-premium-switch input:checked + .msdssss-switch-slider .msdssss-switch-button {
    transform: translateX(26px);
}

.msdssss-premium-switch input:checked + .msdssss-switch-slider .msdssss-switch-glow {
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

/* === ULTRA BUTTONS === */
.msdssss-ultra-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--msdssss-transition-smooth);
    border: none;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msdssss-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.msdssss-btn-gradient {
    background: var(--msdssss-gradient-fire);
    color: var(--msdssss-white);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

.msdssss-btn-gradient:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.6);
}

.msdssss-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--msdssss-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.msdssss-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.msdssss-btn-warning {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: var(--msdssss-white);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.msdssss-btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 165, 0, 0.6);
}

.msdssss-btn-danger {
    background: linear-gradient(135deg, #ff4757, #e84118);
    color: var(--msdssss-white);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.msdssss-btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 71, 87, 0.6);
}

.msdssss-btn-compact {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.msdssss-ultra-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.msdssss-btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.msdssss-ultra-btn:hover .msdssss-btn-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.msdssss-btn-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.msdssss-ultra-btn:hover .msdssss-btn-glow-effect {
    opacity: 1;
}

.msdssss-btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: msdssssRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes msdssssRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* === SETTINGS ROW === */
.msdssss-settings-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* === INFO GRID === */
.msdssss-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msdssss-info-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(34, 34, 34, 0.6);
    border: 1px solid rgba(255, 122, 0, 0.1);
    border-radius: 15px;
    transition: var(--msdssss-transition-smooth);
}

.msdssss-info-card-item:hover {
    background: rgba(45, 45, 45, 1);
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.msdssss-highlight-item {
    border-color: rgba(255, 122, 0, 0.3);
    background: rgba(255, 122, 0, 0.08);
}

.msdssss-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.15);
    border-radius: 12px;
    color: var(--msdssss-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.msdssss-info-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.msdssss-info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msdssss-info-value {
    font-size: 1rem;
    color: var(--msdssss-white);
    font-weight: 700;
}

.msdssss-value-highlight {
    color: var(--msdssss-orange);
    font-size: 1.2rem;
}

/* === DANGER ZONE === */
.msdssss-danger-zone {
    border-color: rgba(255, 71, 87, 0.3) !important;
}

.msdssss-danger-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 71, 87, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--msdssss-transition-smooth);
    pointer-events: none;
}

.msdssss-danger-zone:hover .msdssss-danger-glow {
    opacity: 1;
}

.msdssss-header-danger {
    background: rgba(255, 71, 87, 0.08);
    border-bottom-color: rgba(255, 71, 87, 0.2);
}

.msdssss-icon-danger .msdssss-icon-bg {
    background: rgba(255, 71, 87, 0.15);
    border-color: rgba(255, 71, 87, 0.3);
}

.msdssss-icon-danger i {
    color: #ff4757;
}

.msdssss-danger-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.msdssss-danger-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.msdssss-danger-icon-wrap {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 71, 87, 0.15);
    border-radius: 12px;
    color: #ff4757;
    font-size: 1.1rem;
}

.msdssss-danger-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--msdssss-white);
    margin: 0 0 4px 0;
}

.msdssss-danger-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.msdssss-danger-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.3), transparent);
    margin: 20px 0;
}

/* === ULTRA MODALS === */
.msdssss-ultra-modal {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 30, 1), rgba(40, 40, 40, 1));
    backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.msdssss-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.05), transparent 70%);
    pointer-events: none;
}

.msdssss-modal-header {
    position: relative;
    text-align: center;
    padding: 35px 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.msdssss-modal-warning {
    background: rgba(255, 165, 0, 0.08);
}

.msdssss-modal-danger {
    background: rgba(255, 71, 87, 0.08);
}

.msdssss-modal-icon-large {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--msdssss-white);
    background: var(--msdssss-gradient-fire);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.5);
    animation: msdssssModalIconPulse 2s ease-in-out infinite;
}

.msdssss-modal-warning .msdssss-modal-icon-large {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
}

.msdssss-modal-danger .msdssss-modal-icon-large {
    background: linear-gradient(135deg, #ff4757, #e84118);
}

.msdssss-icon-ring-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--msdssss-orange);
    border-radius: 50%;
    animation: msdssssRingPulse 2s ease-out infinite;
}

@keyframes msdssssModalIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes msdssssRingPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.msdssss-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--msdssss-white);
    margin: 0;
}

.msdssss-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--msdssss-white);
    cursor: pointer;
    transition: var(--msdssss-transition-smooth);
    font-size: 1rem;
}

.msdssss-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.msdssss-modal-body {
    padding: 30px;
}

.msdssss-modal-main-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--msdssss-white);
    text-align: center;
    margin-bottom: 20px;
}

.msdssss-modal-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.msdssss-modal-info-box i {
    color: var(--msdssss-orange);
    font-size: 1.2rem;
}

.msdssss-modal-info-box p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.msdssss-modal-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    color: #ff6b7a;
    font-weight: 600;
}

.msdssss-modal-alert i {
    font-size: 1.2rem;
}

.msdssss-modal-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.msdssss-modal-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.msdssss-modal-checklist i {
    color: #ff4757;
    font-size: 1rem;
}

.msdssss-modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .msdssss-premium-grid {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 992px) {
    .msdssss-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .msdssss-content-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .msdssss-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .msdssss-header-stats {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .msdssss-header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .msdssss-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .msdssss-settings-row {
        grid-template-columns: 1fr;
    }
    
    .msdssss-premium-toggle-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .msdssss-danger-action {
        flex-direction: column;
        align-items: stretch;
    }
    
    .msdssss-ultra-btn {
        width: 100%;
    }
    
    .msdssss-modal-footer {
        flex-direction: column-reverse;
    }
    
    .msdssss-modal-footer .msdssss-ultra-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .msdssss-ultra-wrapper {
        padding: clamp(30px, 6vw, 50px) 0;
    }
    
    .msdssss-premium-header {
        padding: clamp(25px, 4vw, 35px);
    }
    
    .msdssss-header-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .msdssss-stat-mini {
        width: 100%;
        justify-content: center;
    }
    
    .msdssss-toggle-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .msdssss-content-sidebar {
        grid-template-columns: 1fr;
    }
}

/* === SCROLL BAR === */
.msdssss-ultra-wrapper::-webkit-scrollbar {
    width: 10px;
}

.msdssss-ultra-wrapper::-webkit-scrollbar-track {
    background: var(--msdssss-dark);
}

.msdssss-ultra-wrapper::-webkit-scrollbar-thumb {
    background: var(--msdssss-gradient-fire);
    border-radius: 5px;
}

.msdssss-ultra-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--msdssss-orange-light);
}

/* === SELECTION === */
::selection {
    background: var(--msdssss-orange);
    color: var(--msdssss-white);
}

/* === ACCESSIBILITY === */
.msdssss-ultra-btn:focus-visible,
.msdssss-premium-input:focus-visible,
.msdssss-premium-select:focus-visible {
    outline: 3px solid var(--msdssss-orange);
    outline-offset: 3px;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === PRINT === */
@media print {
    .msdssss-particles-system,
    .msdssss-danger-zone {
        display: none !important;
    }
    
    .msdssss-ultra-wrapper {
        background: white !important;
        color: black !important;
    }
}