/* Tutorial System Styles */

/* Tutorial Overlay - Dark background với blur mạnh hơn */
.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999990;
    display: none;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.tutorial-overlay.active {
    display: block;
    opacity: 1;
}

.tutorial-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 20px;
    min-width: 300px;
    max-width: 450px;
    width: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 999999 !important;
    pointer-events: auto !important;
    animation: tutorialFadeIn 0.3s ease-out;
    font-family: 'Roboto', sans-serif;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}

/* Xóa hình ảnh Garp cũ */
.tutorial-tooltip::before {
    display: none;
}

@keyframes tutorialFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Nút Close (X) */
.tutorial-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}

.tutorial-close-btn:hover {
    color: #ffffff;
}

/* Tooltip Header */
.tutorial-tooltip-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tutorial-tooltip-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tooltip Body */
.tutorial-tooltip-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 10px 0;
}

.tutorial-text-container {
    flex: 1;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-tooltip-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #dddddd;
    text-align: center;
    width: 100%;
}

/* Nút 2 bên */
.tutorial-side-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tutorial-side-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.tutorial-side-btn:active {
    transform: scale(0.95);
}

/* Typing effect cho text */
.tutorial-tooltip-description.typing {
    border-right: 2px solid #ffffff;
    animation: blinkCursor 0.8s infinite;
}

.tutorial-tooltip-description.typing-complete {
    border-right: none;
}

@keyframes blinkCursor {

    0%,
    50% {
        border-color: #ffffff;
    }

    51%,
    100% {
        border-color: transparent;
    }
}

/* Tooltip Footer */
.tutorial-tooltip-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
}

.tutorial-progress {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
}

.tutorial-action-btn {
    font-family: 'Cinzel', serif;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 30px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tutorial-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.tutorial-action-btn:active {
    transform: scale(0.98);
}

/* Highlight Effect cho target elements */
.tutorial-highlight {
    position: relative;
    z-index: 999995 !important;
}

.tutorial-highlight:not(.fullscreen-map-modal):not(#demo-inventory-screen):not(.settings-container):not(.npc-shop-modal):not(.npc-enhancement-modal):not(.npc-quest-modal):not(.npc-teleport-modal):not(.npc-dungeon-modal):not(#boss-modal):not(#activity-modal):not(#dungeon-modal):not(#market-modal):not(#recharge-milestone-modal):not(#first-topup-modal) {
    animation: tutorialPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.4) !important;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
}


@keyframes tutorialPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.5),
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.7),
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.6);
    }
}

/* Bỏ arrow vì tooltip luôn ở giữa */

/* Responsive cho mobile */
@media (max-width: 768px) {
    .tutorial-tooltip {
        min-width: 280px;
        max-width: 90vw;
        margin: 10px;
    }

    .tutorial-tooltip-title {
        font-size: 18px;
    }

    .tutorial-tooltip-description {
        font-size: 14px;
    }

    .tutorial-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 80px;
    }

    .tutorial-tooltip-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .tutorial-actions {
        width: 100%;
        justify-content: space-between;
    }

    .tutorial-btn {
        flex: 1;
    }
}

/* ===== NPC Dialogue Dialog Styles ===== */
/* NPC Dialogue Overlay - Similar to tutorial overlay */
.npc-dialogue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999998;
    display: none;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

/* NPC Dialogue Dialog - Similar to tutorial tooltip */
.npc-dialogue-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../assets/icon/ui/dialognpc.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 350px;
    height: 125px;
    box-sizing: border-box;
    padding: 15px 30px 10px 30px;
    z-index: 999999 !important;
    pointer-events: auto !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    display: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    animation: npcDialogOpenCenter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes npcDialogOpenCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scaleX(0) scaleY(0.5);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1) scaleY(1);
    }
}

/* Hình ảnh NPC ở góc trên trái của dialog */
.npc-dialogue-dialog-image {
    position: absolute;
    top: -30px;
    left: -35px;
    width: 85px;
    height: 85px;
    object-fit: contain;
    z-index: 1000000;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* NPC Dialogue Dialog Header */
.npc-dialogue-dialog-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 5px;
    border-bottom: none;
    text-align: center;
}

.npc-dialogue-dialog-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* NPC Dialogue Dialog Body */
.npc-dialogue-dialog-body {
    padding: 0;
    min-height: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.npc-dialogue-dialog-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Typing effect cho NPC dialogue text */
.npc-dialogue-dialog-text.typing {
    border-right: 2px solid #ffffff;
    animation: blinkCursor 0.8s infinite;
}

.npc-dialogue-dialog-text.typing-complete {
    border-right: none;
}

/* NPC Dialogue Dialog Footer */
.npc-dialogue-dialog-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 5px;
    border-top: none;
}

.npc-dialogue-ok-btn {
    padding: 4px 16px;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 60px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.npc-dialogue-ok-btn:hover {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(0, 0, 0, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}

.npc-dialogue-ok-btn:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .npc-dialogue-dialog {
        min-width: 280px;
        max-width: 90vw;
        margin: 10px;
    }

    .npc-dialogue-dialog-title {
        font-size: 18px;
    }

    .npc-dialogue-dialog-text {
        font-size: 14px;
    }

    .npc-dialogue-ok-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
}

/* Đảm bảo các element được highlight không bị che bởi overlay */
.tutorial-highlight {
    position: relative;
    z-index: 999995 !important;
}

/* Đảm bảo giữ nguyên position: fixed cho các panel lớn khi bị highlight để tránh vỡ giao diện */
.fullscreen-map-modal.tutorial-highlight,
#demo-inventory-screen.tutorial-highlight,
.settings-container.tutorial-highlight,
.npc-shop-modal.tutorial-highlight,
.npc-enhancement-modal.tutorial-highlight,
.npc-quest-modal.tutorial-highlight,
.npc-teleport-modal.tutorial-highlight,
.npc-dungeon-modal.tutorial-highlight,
#boss-modal.tutorial-highlight,
#activity-modal.tutorial-highlight,
#dungeon-modal.tutorial-highlight,
#market-modal.tutorial-highlight,
#recharge-milestone-modal.tutorial-highlight,
#first-topup-modal.tutorial-highlight {
    position: fixed !important;
}

/* Đảm bảo giữ nguyên position: absolute cho các close button có position absolute khi bị highlight */
.fullscreen-map-close-btn.tutorial-highlight {
    position: absolute !important;
}

/* Disable interactions với các element khác khi tutorial active */
.tutorial-overlay.active~*:not(.tutorial-tooltip):not(.tutorial-highlight) {
    pointer-events: none;
}

.tutorial-overlay.active .tutorial-highlight {
    pointer-events: auto;
}

/* Đảm bảo tooltip luôn ở trên cùng */
.tutorial-tooltip {
    z-index: 999999 !important;
}

/* ===== NPC Dialogue Dialog Styles ===== */
/* NPC Dialogue Overlay - Similar to tutorial overlay */
.npc-dialogue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999998;
    display: none;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

/* NPC Dialogue Dialog - Similar to tutorial tooltip */
.npc-dialogue-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../assets/icon/ui/dialognpc.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 350px;
    height: 125px;
    box-sizing: border-box;
    padding: 15px 30px 10px 30px;
    z-index: 999999 !important;
    pointer-events: auto !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
    display: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    animation: npcDialogOpenCenter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes npcDialogOpenCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scaleX(0) scaleY(0.5);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1) scaleY(1);
    }
}

/* Hình ảnh NPC ở góc trên trái của dialog */
.npc-dialogue-dialog-image {
    position: absolute;
    top: -30px;
    left: -35px;
    width: 85px;
    height: 85px;
    object-fit: contain;
    z-index: 1000000;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* NPC Dialogue Dialog Header */
.npc-dialogue-dialog-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 5px;
    border-bottom: none;
    text-align: center;
}

.npc-dialogue-dialog-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* NPC Dialogue Dialog Body */
.npc-dialogue-dialog-body {
    padding: 0;
    min-height: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.npc-dialogue-dialog-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Typing effect cho NPC dialogue text */
.npc-dialogue-dialog-text.typing {
    border-right: 2px solid #ffffff;
    animation: blinkCursor 0.8s infinite;
}

.npc-dialogue-dialog-text.typing-complete {
    border-right: none;
}

/* NPC Dialogue Dialog Footer */
.npc-dialogue-dialog-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 5px;
    border-top: none;
}

.npc-dialogue-ok-btn {
    padding: 4px 16px;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 60px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.npc-dialogue-ok-btn:hover {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(0, 0, 0, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}

.npc-dialogue-ok-btn:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .npc-dialogue-dialog {
        min-width: 280px;
        max-width: 90vw;
        margin: 10px;
    }

    .npc-dialogue-dialog-title {
        font-size: 18px;
    }

    .npc-dialogue-dialog-text {
        font-size: 14px;
    }

    .npc-dialogue-ok-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
}

/* ===== Tutorial Floating Pointing Arrow ===== */
.tutorial-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 999999;
    pointer-events: none;
    display: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Gold pointing down arrow */
.tutorial-arrow-top {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffd700"><path d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"/></svg>');
    animation: bobDown 1s infinite ease-in-out;
}

/* Gold pointing up arrow */
.tutorial-arrow-bottom {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffd700"><path d="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"/></svg>');
    animation: bobUp 1s infinite ease-in-out;
}

/* Gold pointing right arrow */
.tutorial-arrow-left {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffd700"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z"/></svg>');
    animation: bobRight 1s infinite ease-in-out;
}

/* Gold pointing left arrow */
.tutorial-arrow-right {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffd700"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z"/></svg>');
    animation: bobLeft 1s infinite ease-in-out;
}

@keyframes bobDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bobUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes bobRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }
}

@keyframes bobLeft {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Tooltip không khung (Frameless) dành cho các bước chỉ vào icon */
.tutorial-tooltip.frameless {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    min-width: 250px !important;
    max-width: 380px !important;
    width: auto !important;
    overflow: visible !important;
    pointer-events: none !important;
}

.tutorial-tooltip.frameless .tutorial-text-container-frameless {
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: auto !important;
}

.tutorial-tooltip.frameless .tutorial-tooltip-description-frameless {
    margin: 0;
    font-size: 19.5px;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    text-shadow:
        0 2px 4px #000000,
        0 4px 10px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 215, 0, 0.8);
    font-family: 'Outfit', 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.tutorial-tooltip.frameless .tutorial-click-anywhere {
    font-size: 13.5px;
    color: #ffd700;
    text-align: center;
    margin-top: 8px;
    font-weight: 800;
    text-shadow: 0 2px 4px #000, 0 0 10px rgba(255, 215, 0, 0.8);
    animation: pulseText 1.5s infinite;
    cursor: pointer;
    pointer-events: auto !important;
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Tooltip không khung ở giữa màn hình (Center Frameless) cho các bước giới thiệu mở đầu */
.tutorial-tooltip.center-frameless {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    width: 90% !important;
    max-width: 600px !important;
}

.tutorial-tooltip.center-frameless .tutorial-tooltip-header {
    border-bottom: none !important;
    margin-bottom: 20px !important;
}

.tutorial-tooltip.center-frameless .tutorial-tooltip-footer {
    border-top: none !important;
    margin-top: 25px !important;
    padding-top: 0 !important;
}

.tutorial-tooltip.center-frameless .tutorial-tooltip-title {
    font-size: 28px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px #000, 0 0 15px rgba(255, 255, 255, 0.5) !important;
    font-weight: 800 !important;
    text-align: center !important;
    font-family: 'Cinzel', serif !important;
}

.tutorial-tooltip.center-frameless .tutorial-tooltip-description {
    font-size: 18px !important;
    color: #ffffff !important;
    line-height: 1.8 !important;
    text-shadow: 0 2px 4px #000, 0 0 10px rgba(0, 0, 0, 0.8) !important;
    text-align: center !important;
}

.tutorial-tooltip.center-frameless .tutorial-side-btn {
    background: transparent !important;
    border: none !important;
    font-size: 28px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.tutorial-tooltip.center-frameless .tutorial-side-btn:hover {
    color: #ffffff !important;
    transform: scale(1.2) !important;
    background: transparent !important;
}

.tutorial-tooltip.center-frameless .tutorial-action-btn {
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    padding: 12px 40px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px #000 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-family: 'Cinzel', serif !important;
}

.tutorial-tooltip.center-frameless .tutorial-action-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) !important;
}