body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: #111827;
    color: #ffffff;
}

h1, h2, h3 {
    margin-top: 0;
}

.panel {
    background: #1f2937;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.overlay-body {
    background: transparent;
    padding: 0;
    overflow: hidden;
}

/* ---------- BASE REGIE ---------- */

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #111827;
    color: #fff;
    box-sizing: border-box;
}

textarea {
    font-family: Arial, sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

button {
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #1d4ed8;
}

.import-export-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.import-box,
.export-box {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 14px;
}

.import-box button,
.export-box button {
    margin-top: 12px;
}

.queue-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.queue-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.queue-main {
    min-width: 0;
}

.queue-name {
    font-weight: bold;
    font-size: 16px;
}

.queue-date {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

.queue-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.queue-btn.secondary {
    background: #4b5563;
}

.queue-btn.secondary:hover {
    background: #374151;
}

.queue-btn.danger {
    background: #dc2626;
}

.queue-btn.danger:hover {
    background: #b91c1c;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.theme-btn {
    background: #1f2937;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
    color: #fff;
}

.theme-btn:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.theme-btn.used,
.theme-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.theme-name {
    font-weight: bold;
    margin-bottom: 6px;
}

.theme-points {
    font-size: 14px;
    color: #9ca3af;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.song-btn {
    background: #111827;
    border: 2px solid #2563eb;
    border-radius: 10px;
    padding: 14px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.song-btn:hover {
    background: #2563eb;
}

.song-letter {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.guess-section {
    margin-bottom: 20px;
}

.words-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.word-input {
    width: 90px;
    padding: 10px 8px;
    text-align: center;
}

.words-line {
    margin-top: 24px;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}

.word {
    display: inline-block;
    margin: 0 6px;
    color: #9ca3af;
    font-weight: bold;
    min-width: 32px;
}

.word.correct {
    color: #22c55e;
}

.word.wrong {
    color: #ef4444;
}

.player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.gift-callout {
    margin: 20px auto 10px auto;
    padding: 18px;
    max-width: 520px;
    text-align: center;
    border-radius: 18px;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
            linear-gradient(135deg, rgba(13,34,72,0.95), rgba(7,19,38,0.96));
    border: 2px solid rgba(255, 215, 92, 0.44);
    box-shadow:
            0 16px 34px rgba(0,0,0,0.35),
            0 0 26px rgba(255, 215, 92, 0.14);
}

.gift-callout-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.gift-callout-image {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 12px auto;
}

.gift-callout-text {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.glow-pulse {
    animation: pulseGold 2s ease-in-out infinite;
}

.song-gift {
    font-size: 13px;
    color: #facc15;
    margin-bottom: 6px;
    font-weight: bold;
}

.song-main-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 6px;
}

.song-main-artist {
    font-size: 14px;
    color: #d1d5db;
    margin-top: 4px;
}

.song-main-missing-count {
    font-size: 13px;
    margin-top: 8px;
    color: #facc15;
}

.theme-config-card {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 16px;
}

.theme-config-header {
    margin-bottom: 10px;
    font-size: 18px;
}

.theme-config-row {
    margin-bottom: 12px;
}

.theme-config-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.theme-config-song {
    background: rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 12px;
}

.theme-config-song-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.theme-config-textarea {
    width: 100%;
    min-height: 90px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #111827;
    color: #fff;
    box-sizing: border-box;
    resize: vertical;
    margin-top: 10px;
}

.theme-config-counter {
    margin-top: 8px;
    font-size: 13px;
    font-weight: bold;
}

.theme-config-counter.ok {
    color: #22c55e;
}

.theme-config-counter.warn {
    color: #facc15;
}

.used-special {
    opacity: 0.25 !important;
    filter: grayscale(1);
    border-color: rgba(255,255,255,0.08) !important;
    background: rgba(255,255,255,0.04) !important;
}

.readonly-words-grid {
    gap: 10px;
}

.readonly-word {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: bold;
}

/* ---------- OVERLAY FBI BLING BLING ---------- */

.fbi-overlay-scene {
    position: relative;
    min-height: 100vh;
    padding: 18px 26px 24px 26px;
    box-sizing: border-box;
    overflow: hidden;
    background:
            radial-gradient(circle at top center, rgba(31, 92, 190, 0.28), transparent 32%),
            radial-gradient(circle at bottom left, rgba(255, 200, 60, 0.18), transparent 28%),
            linear-gradient(135deg, #06101f 0%, #0a1830 28%, #081427 52%, #05101d 100%);
    color: #fff;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.55;
}

.glow-1 {
    width: 360px;
    height: 360px;
    background: rgba(45, 133, 255, 0.28);
    top: -80px;
    left: -60px;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-2 {
    width: 340px;
    height: 340px;
    background: rgba(255, 196, 60, 0.22);
    bottom: -80px;
    right: -40px;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

.spark {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #ffe082 45%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(255, 215, 120, 0.85);
    animation: twinkle 2.2s infinite ease-in-out;
    pointer-events: none;
}

.spark-1 { top: 12%; left: 16%; animation-delay: 0s; }
.spark-2 { top: 18%; right: 22%; animation-delay: 0.6s; }
.spark-3 { bottom: 24%; left: 28%; animation-delay: 1.1s; }
.spark-4 { bottom: 16%; right: 15%; animation-delay: 1.7s; }

.overlay-topbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 16px;
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-badge img {
    max-width: 150px;
    max-height: 84px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 210, 80, 0.35));
}

.game-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-logo-main {
    max-width: 560px;
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 202, 72, 0.22));
}

.phase-pill {
    justify-self: end;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, rgba(23,52,107,0.85), rgba(18,31,66,0.9));
    border: 1px solid rgba(255,214,102,0.4);
    box-shadow: 0 0 18px rgba(20, 84, 190, 0.35);
}

.overlay-main-shell {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 10px auto 0 auto;
}

.duel-line {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

.player-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 18px 20px;
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
            linear-gradient(135deg, rgba(8,26,56,0.9), rgba(5,16,36,0.95));
    border: 2px solid rgba(255, 217, 95, 0.24);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.15),
            0 12px 30px rgba(0,0,0,0.35),
            0 0 22px rgba(255, 200, 72, 0.08);
    overflow: hidden;
}

.player-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 40%, transparent 70%);
    transform: translateX(-120%);
    animation: shineSweep 6s linear infinite;
    pointer-events: none;
}

.holder-card {
    border-color: rgba(255, 215, 80, 0.7);
}

.challenger-card {
    border-color: rgba(115, 174, 255, 0.45);
}

.active-player {
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.18),
            0 12px 30px rgba(0,0,0,0.35),
            0 0 30px rgba(255, 215, 90, 0.28),
            0 0 55px rgba(51, 121, 255, 0.18);
    transform: translateY(-2px);
}

.player-crown {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 22px;
}

.player-avatar-wrap {
    flex: 0 0 auto;
}

.holder-avatar-wrap {
    width: 92px;
    height: 92px;
}

.challenger-avatar-wrap {
    width: 74px;
    height: 74px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.holder-avatar {
    border: 4px solid #ffd54f;
    box-shadow: 0 0 22px rgba(255, 214, 84, 0.32);
}

.challenger-avatar {
    border: 3px solid #8ab4ff;
    box-shadow: 0 0 18px rgba(90, 148, 255, 0.22);
}

.avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d4ed8, #0f2c6b);
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.player-info {
    min-width: 0;
}

.player-role {
    font-size: 14px;
    color: #d9e7ff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-name {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
    word-break: break-word;
    text-shadow: 0 0 10px rgba(255,255,255,0.06);
}

.player-score {
    margin-top: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #ffd54f;
}

.versus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    background: radial-gradient(circle at 30% 30%, #ffd54f, #c58b09 65%, #8b5c00 100%);
    box-shadow: 0 0 26px rgba(255, 204, 72, 0.42);
}

.main-round-panel {
    margin: 22px auto 0 auto;
    max-width: 1000px;
    text-align: center;
    padding: 22px 26px;
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
            linear-gradient(135deg, rgba(6,26,54,0.92), rgba(6,17,34,0.95));
    border: 2px solid rgba(255, 216, 96, 0.3);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 0 30px rgba(255, 215, 90, 0.1);
}

.theme-badge {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.points-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 22px;
    font-weight: bold;
    color: #091221;
    background: linear-gradient(135deg, #ffe082, #ffbf2f);
}

.turn-line {
    margin-top: 14px;
    font-size: 26px;
    font-weight: 700;
    color: #dce8ff;
}

.turn-line span {
    color: #ffd54f;
}

.current-song-title {
    margin-top: 14px;
    font-size: 30px;
    font-weight: 900;
}

.current-song-artist {
    margin-top: 6px;
    font-size: 22px;
    color: #d6e2ff;
}

.fbi-section {
    margin: 24px auto 0 auto;
    max-width: 1280px;
    padding: 22px;
    border-radius: 24px;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
            linear-gradient(135deg, rgba(7,24,50,0.92), rgba(4,14,28,0.95));
    border: 2px solid rgba(255, 215, 85, 0.22);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffd54f;
    text-transform: uppercase;
}

.song-choice-subtitle {
    text-align: center;
    font-size: 18px;
    color: #dce7ff;
}

.timer-ring {
    width: 140px;
    height: 140px;
    margin: 18px auto;
    padding: 8px;
    border-radius: 50%;
    background: conic-gradient(#ffd54f, #3b82f6, #ffd54f);
    box-shadow: 0 0 32px rgba(255, 213, 79, 0.24);
    animation: rotateGlow 6s linear infinite;
}

.timer-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #0d1d39 0%, #081221 70%, #06101c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
    color: #fff;
}

.song-choice-help {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.song-choice-help.with-images {
    align-items: stretch;
}

.song-choice-item {
    font-size: 20px;
    font-weight: bold;
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 12px;
}

.song-choice-item.with-image {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255, 215, 85, 0.18);
}

.song-choice-gift-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.song-choice-gift-label {
    font-size: 20px;
    font-weight: bold;
}

.overlay-song-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.overlay-song-card {
    position: relative;
    overflow: hidden;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
            linear-gradient(135deg, rgba(8,24,49,0.95), rgba(6,15,29,0.95));
    border: 2px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}

.shine-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.09) 48%, transparent 72%);
    transform: translateX(-130%);
    animation: shineSweep 4.5s linear infinite;
}

.overlay-song-letter {
    font-size: 14px;
    color: #d1dcff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-song-gift-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px auto;
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.14));
}

.overlay-song-title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
}

.overlay-song-artist {
    font-size: 18px;
    color: #d1dcff;
    margin-top: 8px;
}

.overlay-song-gift {
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #ffd54f;
}

.chosen-state {
    margin-top: 24px;
}

.selected-song-card {
    border-color: #22c55e;
    box-shadow:
            0 0 0 3px rgba(34, 197, 94, 0.18),
            0 0 30px rgba(34, 197, 94, 0.16),
            0 12px 28px rgba(0,0,0,0.32);
    transform: scale(1.02);
}

.unselected-song-card {
    opacity: 0.42;
    filter: grayscale(0.4);
}

.overlay-song-status {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
}

.chosen-by-line {
    margin-top: 14px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffd54f;
}

.overlay-theme-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.overlay-theme-card {
    padding: 16px 12px;
    border-radius: 18px;
    text-align: center;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
            linear-gradient(135deg, rgba(8,24,49,0.95), rgba(6,15,29,0.95));
    border: 2px solid rgba(255, 215, 85, 0.22);
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

.overlay-theme-card.used {
    opacity: 0.28;
    filter: grayscale(1);
    border-color: rgba(255,255,255,0.08);
}

.overlay-theme-points {
    font-size: 34px;
    font-weight: 900;
    color: #ffd54f;
    line-height: 1;
}

.overlay-theme-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.overlay-theme-status {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #d5e2ff;
}

.words-section {
    max-width: 1150px;
}

.words-line {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.word-chip {
    min-width: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.08);
    color: #c9d4ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.word-chip.pending {
    color: #d8dde7;
    border-color: rgba(255,255,255,0.14);
}

.word-chip.correct {
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
}

.word-chip.wrong {
    color: #fff;
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.35);
}

.intro-overlay-panel {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: radial-gradient(circle, rgba(15,35,75,0.35) 0%, rgba(3,8,18,0.88) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introFadeIn 0.25s ease-out;
    pointer-events: none;
}

.intro-overlay-inner {
    text-align: center;
    padding: 34px 48px;
    border-radius: 28px;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
            linear-gradient(135deg, rgba(13,34,72,0.95), rgba(7,19,38,0.96));
    border: 2px solid rgba(255, 215, 90, 0.42);
    box-shadow:
            0 18px 50px rgba(0,0,0,0.5),
            0 0 36px rgba(255, 215, 90, 0.18);
    animation: introZoomGlow 0.6s ease-out;
}

.intro-small {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffd54f;
    text-transform: uppercase;
}

.intro-main {
    margin-top: 14px;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
            0 0 18px rgba(255,255,255,0.16),
            0 0 26px rgba(255, 215, 90, 0.18);
}

.intro-sub {
    margin-top: 14px;
    font-size: 22px;
    font-weight: 700;
    color: #dce8ff;
}

@keyframes twinkle {
    0%, 100% { transform: scale(0.7); opacity: 0.35; }
    50% { transform: scale(1.35); opacity: 1; }
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(16px) translateX(12px); }
}

@keyframes shineSweep {
    0% { transform: translateX(-130%); }
    100% { transform: translateX(130%); }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 16px 34px rgba(0,0,0,0.35), 0 0 18px rgba(255, 215, 92, 0.16); }
    50% { box-shadow: 0 16px 34px rgba(0,0,0,0.35), 0 0 34px rgba(255, 215, 92, 0.28); }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes introFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes introZoomGlow {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}