/* ===================================
   ELITE SUGGESTION MODAL V2 - PREMIUM REDESIGN
   Versão Premium com animações Elite
   Tema: Verde/Lâmpada (Green/Lightbulb)
   =================================== */

/* ===================================
   OVERLAY & BACKDROP
   =================================== */

.elite-suggestion-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    z-index: 10000;
    opacity: 0;
    animation: elite-suggestion-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.elite-suggestion-overlay.light-theme {
    background: rgba(255, 255, 255, 0.5);
}

@keyframes elite-suggestion-fade-in {
    to {
        opacity: 1;
    }
}

.elite-suggestion-overlay.hidden {
    display: none;
}

/* ===================================
   MODAL CONTAINER
   =================================== */

.elite-suggestion-modal {
    background: linear-gradient(145deg,
        rgba(17, 24, 39, 0.98),
        rgba(31, 41, 55, 0.98)
    );

    border-radius: 24px;
    border: 2px solid rgba(34, 197, 94, 0.2);

    max-width: 800px;
    width: 100%;
    max-height: 90vh;

    box-shadow:
        0 0 80px rgba(34, 197, 94, 0.3),
        0 0 160px rgba(34, 197, 94, 0.15),
        0 25px 50px rgba(0, 0, 0, 0.5);

    position: relative;
    overflow: hidden;

    transform: scale(0.9);
    animation: elite-suggestion-scale-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-modal {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.98),
        rgba(249, 250, 251, 0.98)
    );
    border-color: rgba(21, 128, 61, 0.3);
    box-shadow:
        0 0 80px rgba(21, 128, 61, 0.2),
        0 0 160px rgba(21, 128, 61, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.15);
}

@keyframes elite-suggestion-scale-in {
    to {
        transform: scale(1);
    }
}

/* ===================================
   CLOSE BUTTON - ANIMADO COM ROTAÇÃO 90°
   =================================== */

.elite-suggestion-close-x {
    position: absolute;
    top: 24px;
    right: 24px;

    width: 44px;
    height: 44px;

    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: rgba(245, 245, 247, 0.7);

    cursor: pointer;
    z-index: 10;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.elite-suggestion-overlay.light-theme .elite-suggestion-close-x {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(29, 29, 31, 0.7);
}

.elite-suggestion-close-x:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;

    transform: rotate(90deg) scale(1.1);

    box-shadow:
        0 0 40px rgba(239, 68, 68, 0.5),
        0 0 80px rgba(239, 68, 68, 0.3);
}

.elite-suggestion-overlay.light-theme .elite-suggestion-close-x:hover {
    background: rgba(239, 68, 68, 0.1);
    box-shadow:
        0 0 40px rgba(239, 68, 68, 0.3),
        0 0 80px rgba(239, 68, 68, 0.15);
}

.elite-suggestion-close-x:active {
    transform: rotate(90deg) scale(0.95);
}

/* ===================================
   HEADER
   =================================== */

.elite-suggestion-header {
    padding: 48px 48px 32px 48px;
    text-align: center;
    position: relative;
}

/* ===================================
   MEGA ICON - 140px com múltiplas animações
   =================================== */

.elite-suggestion-icon-mega {
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
    position: relative;

    animation: elite-suggestion-float-mega 4s ease-in-out infinite;
}

@keyframes elite-suggestion-float-mega {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Container central do ícone */
.elite-suggestion-icon-center {
    width: 140px;
    height: 140px;

    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.15),
        rgba(74, 222, 128, 0.1)
    );

    border: 3px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    box-shadow:
        0 0 60px rgba(34, 197, 94, 0.4),
        0 0 120px rgba(34, 197, 94, 0.2),
        inset 0 0 40px rgba(34, 197, 94, 0.1);

    animation: elite-suggestion-glow-pulse 3s ease-in-out infinite;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-icon-center {
    background: linear-gradient(135deg,
        rgba(21, 128, 61, 0.1),
        rgba(34, 197, 94, 0.08)
    );
    border-color: rgba(21, 128, 61, 0.4);
    box-shadow:
        0 0 60px rgba(21, 128, 61, 0.3),
        0 0 120px rgba(21, 128, 61, 0.15),
        inset 0 0 40px rgba(21, 128, 61, 0.08);
}

@keyframes elite-suggestion-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 60px rgba(34, 197, 94, 0.4),
            0 0 120px rgba(34, 197, 94, 0.2),
            inset 0 0 40px rgba(34, 197, 94, 0.1);
    }
    50% {
        box-shadow:
            0 0 80px rgba(34, 197, 94, 0.6),
            0 0 160px rgba(34, 197, 94, 0.3),
            inset 0 0 60px rgba(34, 197, 94, 0.15);
    }
}

/* Ícone de lâmpada */
.elite-suggestion-icon-center i {
    font-size: 64px;

    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: elite-suggestion-icon-spin 20s linear infinite;

    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
}

.elite-suggestion-overlay.light-theme .elite-suggestion-icon-center i {
    background: linear-gradient(135deg, #15803d, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(21, 128, 61, 0.5));
}

@keyframes elite-suggestion-icon-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Badge AI */
.elite-suggestion-ai-badge {
    position: absolute;
    top: -8px;
    right: -8px;

    background: linear-gradient(135deg, #8b5cf6, #a855f7);

    padding: 6px 14px;
    border-radius: 20px;

    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;

    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3);

    animation: elite-suggestion-badge-pulse 2s ease-in-out infinite;
}

@keyframes elite-suggestion-badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 4px 20px rgba(139, 92, 246, 0.5),
            0 0 40px rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 6px 30px rgba(139, 92, 246, 0.7),
            0 0 60px rgba(139, 92, 246, 0.5);
    }
}

/* ===================================
   4 PARTÍCULAS ORBITANDO
   =================================== */

.elite-suggestion-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: linear-gradient(135deg, #22c55e, #4ade80);

    box-shadow:
        0 0 20px rgba(34, 197, 94, 0.8),
        0 0 40px rgba(34, 197, 94, 0.4);

    z-index: 1;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-particle {
    background: linear-gradient(135deg, #15803d, #22c55e);
    box-shadow:
        0 0 20px rgba(21, 128, 61, 0.6),
        0 0 40px rgba(21, 128, 61, 0.3);
}

/* Partícula 1 - Órbita circular superior */
.elite-suggestion-particle:nth-child(1) {
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    animation: elite-suggestion-orbit-1 6s ease-in-out infinite;
}

@keyframes elite-suggestion-orbit-1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(60px, -30px); }
    50% { transform: translate(0, -60px); }
    75% { transform: translate(-60px, -30px); }
    100% { transform: translate(0, 0); }
}

/* Partícula 2 - Órbita lateral direita */
.elite-suggestion-particle:nth-child(2) {
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    animation: elite-suggestion-orbit-2 7s ease-in-out infinite;
    animation-delay: -1.75s;
}

@keyframes elite-suggestion-orbit-2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(0, 60px); }
    50% { transform: translate(60px, 0); }
    75% { transform: translate(0, -60px); }
    100% { transform: translate(0, 0); }
}

/* Partícula 3 - Órbita inferior */
.elite-suggestion-particle:nth-child(3) {
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    animation: elite-suggestion-orbit-3 8s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes elite-suggestion-orbit-3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-60px, 30px); }
    50% { transform: translate(0, 60px); }
    75% { transform: translate(60px, 30px); }
    100% { transform: translate(0, 0); }
}

/* Partícula 4 - Órbita lateral esquerda */
.elite-suggestion-particle:nth-child(4) {
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    animation: elite-suggestion-orbit-4 9s ease-in-out infinite;
    animation-delay: -6.75s;
}

@keyframes elite-suggestion-orbit-4 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-60px, 0); }
    50% { transform: translate(0, -60px); }
    75% { transform: translate(60px, 0); }
    100% { transform: translate(0, 0); }
}

/* ===================================
   2 ANÉIS ROTATIVOS
   =================================== */

.elite-suggestion-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px dashed rgba(34, 197, 94, 0.3);
    z-index: 0;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-ring {
    border-color: rgba(21, 128, 61, 0.4);
}

/* Anel 1 - Maior e mais lento */
.elite-suggestion-ring:nth-of-type(1) {
    width: 180px;
    height: 180px;
    margin-left: -90px;
    margin-top: -90px;
    animation: elite-suggestion-ring-rotate 30s linear infinite;
}

@keyframes elite-suggestion-ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Anel 2 - Menor e mais rápido */
.elite-suggestion-ring:nth-of-type(2) {
    width: 220px;
    height: 220px;
    margin-left: -110px;
    margin-top: -110px;
    border-style: dotted;
    animation: elite-suggestion-ring-rotate-reverse 40s linear infinite;
}

@keyframes elite-suggestion-ring-rotate-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* ===================================
   TITLE & SUBTITLE
   =================================== */

.elite-suggestion-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #F5F5F7;
    margin-bottom: 12px;
    letter-spacing: 0.5px;

    background: linear-gradient(135deg, #22c55e, #4ade80, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    animation: elite-suggestion-title-glow 3s ease-in-out infinite;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-title {
    background: linear-gradient(135deg, #15803d, #22c55e, #166534);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elite-suggestion-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-title i {
    background: linear-gradient(135deg, #15803d, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes elite-suggestion-title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.8));
    }
}

.elite-suggestion-subtitle {
    font-size: 1rem;
    color: rgba(245, 245, 247, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-subtitle {
    color: rgba(29, 29, 31, 0.7);
}

/* ===================================
   CONTENT AREA
   =================================== */

.elite-suggestion-content {
    padding: 0 48px 48px 48px;
    max-height: 50vh;
    overflow-y: auto;

    opacity: 0;
    transform: translateY(20px);
    animation: elite-suggestion-content-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes elite-suggestion-content-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar */
.elite-suggestion-content::-webkit-scrollbar {
    width: 8px;
}

.elite-suggestion-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}

.elite-suggestion-content::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-content::-webkit-scrollbar-thumb {
    background: rgba(21, 128, 61, 0.3);
}

.elite-suggestion-content::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.5);
}

.elite-suggestion-overlay.light-theme .elite-suggestion-content::-webkit-scrollbar-thumb:hover {
    background: rgba(21, 128, 61, 0.5);
}

/* ===================================
   HIGHLIGHT BOX - Verde premium
   =================================== */

.elite-suggestion-highlight {
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.08),
        rgba(74, 222, 128, 0.05)
    );

    border: 2px solid rgba(34, 197, 94, 0.25);
    border-radius: 16px;
    padding: 32px;

    box-shadow:
        0 8px 32px rgba(34, 197, 94, 0.15),
        inset 0 0 40px rgba(34, 197, 94, 0.05);

    position: relative;
    overflow: hidden;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-highlight {
    background: linear-gradient(135deg,
        rgba(21, 128, 61, 0.05),
        rgba(34, 197, 94, 0.03)
    );
    border-color: rgba(21, 128, 61, 0.3);
    box-shadow:
        0 8px 32px rgba(21, 128, 61, 0.1),
        inset 0 0 40px rgba(21, 128, 61, 0.03);
}

.elite-suggestion-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(34, 197, 94, 0.1),
        transparent
    );
    animation: elite-suggestion-shimmer 3s ease-in-out infinite;
}

@keyframes elite-suggestion-shimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.elite-suggestion-highlight h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-highlight h3 {
    color: #15803d;
}

.elite-suggestion-highlight h3 i {
    font-size: 1.5rem;
}

.elite-suggestion-highlight p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(245, 245, 247, 0.9);
    margin: 0;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-highlight p {
    color: rgba(29, 29, 31, 0.9);
}

/* ===================================
   FOOTER - Botão OK
   =================================== */

.elite-suggestion-footer {
    padding: 0 48px 48px 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.elite-suggestion-ok-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);

    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;

    padding: 16px 48px;

    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;

    cursor: pointer;

    box-shadow:
        0 8px 24px rgba(34, 197, 94, 0.3),
        0 0 40px rgba(34, 197, 94, 0.2);

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

    position: relative;
    overflow: hidden;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-ok-btn {
    background: linear-gradient(135deg, #15803d, #166534);
    border-color: rgba(21, 128, 61, 0.4);
    box-shadow:
        0 8px 24px rgba(21, 128, 61, 0.25),
        0 0 40px rgba(21, 128, 61, 0.15);
}

.elite-suggestion-ok-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elite-suggestion-ok-btn:hover::before {
    opacity: 1;
}

.elite-suggestion-ok-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 12px 32px rgba(34, 197, 94, 0.4),
        0 0 60px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
}

.elite-suggestion-overlay.light-theme .elite-suggestion-ok-btn:hover {
    box-shadow:
        0 12px 32px rgba(21, 128, 61, 0.35),
        0 0 60px rgba(21, 128, 61, 0.25);
    border-color: rgba(21, 128, 61, 0.6);
}

.elite-suggestion-ok-btn:active {
    transform: translateY(0) scale(1);
}

.elite-suggestion-ok-btn i {
    margin-right: 8px;
}

/* ===================================
   ESC HINT
   =================================== */

.elite-suggestion-esc-hint {
    position: absolute;
    top: 24px;
    left: 24px;

    font-size: 0.875rem;
    color: rgba(245, 245, 247, 0.5);

    display: flex;
    align-items: center;
    gap: 8px;

    opacity: 0;
    animation: elite-suggestion-esc-fade-in 0.6s ease 1s forwards;
}

.elite-suggestion-overlay.light-theme .elite-suggestion-esc-hint {
    color: rgba(29, 29, 31, 0.5);
}

@keyframes elite-suggestion-esc-fade-in {
    to {
        opacity: 1;
    }
}

.elite-suggestion-esc-hint kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(245, 245, 247, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.elite-suggestion-overlay.light-theme .elite-suggestion-esc-hint kbd {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
    color: rgba(29, 29, 31, 0.8);
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    .elite-suggestion-modal {
        max-height: 95vh;
        border-radius: 20px;
    }

    .elite-suggestion-header {
        padding: 36px 24px 24px 24px;
    }

    .elite-suggestion-icon-mega {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    .elite-suggestion-icon-center {
        width: 100px;
        height: 100px;
    }

    .elite-suggestion-icon-center i {
        font-size: 48px;
    }

    .elite-suggestion-ai-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        top: -6px;
        right: -6px;
    }

    /* Partículas menores no mobile */
    .elite-suggestion-particle {
        width: 8px;
        height: 8px;
    }

    .elite-suggestion-particle:nth-child(1) {
        margin-left: -4px;
        margin-top: -4px;
    }

    @keyframes elite-suggestion-orbit-1 {
        0% { transform: translate(0, 0); }
        25% { transform: translate(40px, -20px); }
        50% { transform: translate(0, -40px); }
        75% { transform: translate(-40px, -20px); }
        100% { transform: translate(0, 0); }
    }

    .elite-suggestion-particle:nth-child(2) {
        margin-left: -4px;
        margin-top: -4px;
    }

    @keyframes elite-suggestion-orbit-2 {
        0% { transform: translate(0, 0); }
        25% { transform: translate(0, 40px); }
        50% { transform: translate(40px, 0); }
        75% { transform: translate(0, -40px); }
        100% { transform: translate(0, 0); }
    }

    .elite-suggestion-particle:nth-child(3) {
        margin-left: -4px;
        margin-top: -4px;
    }

    @keyframes elite-suggestion-orbit-3 {
        0% { transform: translate(0, 0); }
        25% { transform: translate(-40px, 20px); }
        50% { transform: translate(0, 40px); }
        75% { transform: translate(40px, 20px); }
        100% { transform: translate(0, 0); }
    }

    .elite-suggestion-particle:nth-child(4) {
        margin-left: -4px;
        margin-top: -4px;
    }

    @keyframes elite-suggestion-orbit-4 {
        0% { transform: translate(0, 0); }
        25% { transform: translate(-40px, 0); }
        50% { transform: translate(0, -40px); }
        75% { transform: translate(40px, 0); }
        100% { transform: translate(0, 0); }
    }

    /* Anéis menores no mobile */
    .elite-suggestion-ring:nth-of-type(1) {
        width: 130px;
        height: 130px;
        margin-left: -65px;
        margin-top: -65px;
    }

    .elite-suggestion-ring:nth-of-type(2) {
        width: 160px;
        height: 160px;
        margin-left: -80px;
        margin-top: -80px;
    }

    .elite-suggestion-title {
        font-size: 1.5rem;
        gap: 12px;
    }

    .elite-suggestion-title i {
        font-size: 1.5rem;
    }

    .elite-suggestion-subtitle {
        font-size: 0.875rem;
    }

    .elite-suggestion-content {
        padding: 0 24px 24px 24px;
        max-height: 60vh;
    }

    .elite-suggestion-highlight {
        padding: 20px;
        border-radius: 12px;
    }

    .elite-suggestion-highlight h3 {
        font-size: 1rem;
        margin-bottom: 12px;
        gap: 8px;
    }

    .elite-suggestion-highlight h3 i {
        font-size: 1.25rem;
    }

    .elite-suggestion-highlight p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .elite-suggestion-footer {
        padding: 0 24px 24px 24px;
    }

    .elite-suggestion-ok-btn {
        padding: 14px 36px;
        font-size: 0.9375rem;
        border-radius: 10px;
    }

    .elite-suggestion-close-x {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .elite-suggestion-esc-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .elite-suggestion-overlay {
        padding: 10px;
    }

    .elite-suggestion-title {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 8px;
    }

    .elite-suggestion-highlight p {
        font-size: 0.9375rem;
    }

    .elite-suggestion-ok-btn {
        width: 100%;
    }
}
