/* --- 娛樂城 App 風格色系 (霓虹紫 + 亮金) --- */
:root {
    --primary-gold: #FFD700; /* 更亮眼的正黃金 */
    --primary-light: #FFF066;
    --bg-base: #1c0033; /* 主背景改為深紫 */
    --bg-glass: rgba(45, 0, 77, 0.7); /* 玻璃態紫色 */
    --bg-panel: #3a0073; /* 面板淺紫 */
    --text-main: #FFFFFF;
    --text-muted: #d5b3ff; /* 淺紫色文字取代原本的灰色 */
    --gold-gradient: linear-gradient(180deg, #FFF6A0 0%, #FFD700 40%, #D48E00 100%);
    --purple-gradient: linear-gradient(180deg, #6600cc 0%, #330066 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Noto Sans TC', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- 霓虹背景光暈 (模擬夜城氛圍) --- */
/* --- 背景圖片與黑色透明遮罩 --- */
.page-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    /* 使用 linear-gradient 設定黑色透明度 (0.7)，疊加在背景圖片上 */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../static/back.png');
    background-size: cover; /* 讓圖片填滿整個畫面 */
    background-position: center; /* 讓圖片置中 */
    background-repeat: no-repeat; /* 防止圖片重複 */
    z-index: -3; pointer-events: none;
}

.ambient-orbs {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    overflow: hidden; z-index: -2; pointer-events: none;
}
.orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.6;
    animation: floatOrb 15s infinite alternate ease-in-out;
}
.orb-1 { width: 50vw; height: 50vw; background: #9900ff; top: -10%; left: -20%; }
.orb-2 { width: 40vw; height: 40vw; background: #ff007f; bottom: 10%; right: -10%; opacity: 0.4; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: #FFD700; top: 50%; left: 50%; opacity: 0.15; animation-delay: -10s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5vw, 10vh) scale(1.1); }
}

/* --- 懸浮式導覽列 --- */
.header-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    transition: var(--transition-smooth);
}

.header-nav {
    display: flex; 
    justify-content: center; /* 將內容完全水平置中 */
    align-items: center; 
    gap: 40px; /* Logo 與選單之間的間距 */
    padding: 15px 30px; 
    background: var(--purple-gradient);
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. 讓圖片絕對定位，使其可以超越父容器的大小 */
.logo-container img {
    height: 65px; /* Logo 稍微放大 */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
    transition: transform 0.3s ease;
}

/* 選配：滑鼠移上去時再稍微放大一點點 */
.logo-container img:hover {
    transform: scale(1.05);
}
.nav-menu { 
    display: flex; 
    gap: 20px; 
    align-items: center;
}

.nav-menu a {
    color: var(--text-main); 
    text-decoration: none; 
    font-size: 1.15rem; /* 字體放大 (原本為 0.95rem) */
    font-weight: bold;
    padding: 8px 18px; 
    border-radius: 20px; 
    transition: var(--transition-smooth);
}
.nav-menu a:hover, .nav-menu a.active { 
    background: var(--gold-gradient); color: #4a00e0;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.btn-nav-play {
    background: var(--gold-gradient) !important;
    color: #4a00e0 !important;
    font-weight: 900 !important;
    border: 2px solid #FFF;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-nav-play:hover {
    transform: scale(1.05);
}

/* 確保手機版導覽列樣式正常 */
@media (max-width: 768px) {
    .nav-menu { display: none; } /* 手機版依舊隱藏上方選單 */
    
    .header-nav { 
        padding: 10px; 
        gap: 0;
    }

    .logo-container img {
        height: 50px; 
        /* 取消之前的絕對定位，讓 Flexbox 自然置中 */
        position: static; 
        transform: none; 
    }
}

/* 跑馬燈 */
.marquee-container {
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
    padding: 5px 10px;
    font-size: 0.9rem;
    display: flex; 
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

/* 確保手機版導覽列樣式正常 (修復 Logo 跑位) */
@media (max-width: 768px) {
    .nav-menu { 
        display: none; /* 手機版隱藏上方選單 */
    } 
    
    .header-nav { 
        justify-content: center; 
        padding: 10px; 
        gap: 0;
    }

    .logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-container img {
        position: static; 
        transform: none !important; /* 強制清除任何位移，防止 Logo 往上飄 */
        height: 55px; /* 適合手機的高度 */
        margin: 0 auto;
    }
}
.top-banner-wrapper {
    position: relative;
    width: 80%;
    /* 這裡把上方距離加大到 140px，避開導覽列與跑馬燈 */
    margin: 140px auto 0; 
    border-radius: 20px;
    
    aspect-ratio: 21 / 15; 
    height: auto; 
    min-height: auto;
    overflow: hidden;
    background-color: #0d001a00; 
    touch-action: pan-y; 
}

.top-banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.top-banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.top-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 關鍵：改為 contain，保證圖片 100% 完整顯示絕不裁切 */
    object-position: center;
}

/* 底部指示點點 */
.top-banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.banner-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
    /* box-shadow: 0 0 10px var(--primary-gold); */
}

/* 手機版適應 */
@media (max-width: 768px) {
    .top-banner-wrapper {
        width: 95%;
        /* 這裡把手機版上方距離加大到 115px */
        margin: 115px auto 0;  
        aspect-ratio: 2 / 1; 
    }
    .banner-dot {
        width: 8px; 
        height: 8px;
    }
}

/* --- Hero Section --- */
.hero {
    /* 將原本的 padding: 140px 20px 20px; 調整為下方數值，以銜接上方滿版圖片 */
    padding: 40px 20px 20px; 
}

/* .hero-content {
    max-width: 800px; 
    opacity: 0; 
    animation: fadeUp 1s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
    /* background: var(--bg-glass); */
    /* padding: 40px; 
    border-radius: 20px;  */
    /* 已經移除了 border: 2px solid var(--primary-gold); */
    
    /* 同時幫你把內層的金色光暈 (inset) 也拿掉，讓外觀更純粹乾淨 */
    /* box-shadow: 0 0 30px rgba(153, 0, 255, 0.5);  */
    
    /* backdrop-filter: blur(10px); */
/* } */ 

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); 
    font-weight: 900; 
    margin: 0 0 15px;
    line-height: 1.2; 
    color: var(--primary-gold);
    text-shadow: 0 4px 10px rgba(0,0,0,0.8), 0 0 20px rgba(255,215,0,0.4);
}
.hero h1 span { 
    background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: rgb(255, 251, 0); 
    font-size: 1.2em; display: block; margin-top: 10px;
}

.hero p { font-size: 1.1rem; color: var(--text-main); margin-bottom: 30px; font-weight: bold; }

/* --- 按鈕系統 (高亮金) --- */
.btn-brand {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 35px; font-size: 1.1rem; 
    color: #4a00e0; 
    background: var(--gold-gradient); 
    text-decoration: none;
    border-radius: 50px; font-weight: 900; 
    border: 2px solid #FFF;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4), inset 0 -3px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
}
.btn-brand:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6); }

/* 登入綠色按鈕風格 */
.btn-login {
    background: linear-gradient(180deg, #7fff00 0%, #32cd32 100%);
    color: #004d00; border-color: #fff; box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
}

/* --- 區塊佈局 --- */
.section-padding { padding: 60px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 40px; text-align: center; width: 100%; }
.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    background: none;
    border: none;
    padding: 0;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    flex: 1;
    height: 2px;
    max-width: 30%; /* 控制細線的最大長度 */
    box-shadow: 0 0 10px #b300ff;
}

.section-header h2::before {
    background: linear-gradient(90deg, transparent 0%, #d900ff 100%);
    margin-right: -15px; /* 負邊距讓線條無縫插入中間的圓角 */
    z-index: 0;
}

.section-header h2::after {
    background: linear-gradient(270deg, transparent 0%, #6600cc 100%);
    margin-left: -15px;
    z-index: 0;
}

.section-header h2 span {
    background: linear-gradient(90deg, #ff5eeb 0%, #9b00ff 50%, #7a00cc 100%);
    color: #FFFFFF;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 2px;
    padding: 6px 50px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgba(155, 0, 255, 0.7), inset 0 0 12px rgba(255, 255, 255, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- 圖片跑馬燈 (遊戲大廳風格) --- */
.carousel-wrapper { position: relative; width: 100%; overflow: hidden; padding: 20px 0; }
.carousel-container { max-width: 800px; margin: 0 auto; cursor: grab; }
.carousel-track { display: flex; transition: transform 0.5s ease; width: 100%; }
.carousel-slide {
    min-width: 100%; padding: 0 10px; display: flex; justify-content: center;
    transform: scale(0.9); opacity: 0.6; transition: all 0.5s ease;
}
.carousel-slide.is-active { transform: scale(1); opacity: 1; }
.carousel-slide img {
    width: 100%; border-radius: 16px; object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(153, 0, 255, 0.6); 
}

/* --- Q&A 與資訊 --- */
.faq-container { background: var(--bg-glass); border-radius: 20px; padding: 20px; border: 1px solid var(--primary-gold); }
.faq-item { border-bottom: 1px solid rgba(255,215,0,0.2); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-header h4 { margin: 0; font-size: 1.1rem; font-weight: bold; color: var(--text-main); }
.faq-item.active .faq-header h4 { color: var(--primary-gold); }
.faq-content p { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }

/* --- VIP 表格 --- */
.vip-table-wrapper {
    width: 100%; overflow-x: auto; 
    background: var(--bg-panel); border: 2px solid var(--primary-gold);
    border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.vip-table { width: 100%; border-collapse: collapse; min-width: 900px; text-align: center; }
.vip-table th { background: var(--purple-gradient); color: var(--primary-gold); padding: 15px; border-bottom: 2px solid var(--primary-gold); }
.vip-table td { padding: 15px; border-bottom: 1px solid rgba(255, 215, 0, 0.2); font-weight: bold; }
.vip-table tbody tr:hover { background: rgba(255, 215, 0, 0.1); }
.vip-table .label-col { background: #2b0057 !important; color: var(--primary-gold); position: sticky; left: 0; border-right: 2px solid var(--primary-gold); }

/* --- Footer --- */
footer { text-align: center; padding: 40px 20px 80px; }
.footer-logo { height: 30px; margin-bottom: 15px; filter: drop-shadow(0 0 5px rgba(255,215,0,0.8)); }

/* ========================================= */
/* --- 行動端底部導覽列 (華麗遊戲大廳風) --- */
/* ========================================= */
.mobile-tab-bar { display: none; } /* 電腦版隱藏 */

@media (max-width: 768px) {
    .mobile-tab-bar {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%;
        background: linear-gradient(180deg, #5900b3 0%, #2b0057 100%);
        border-top: 2px solid var(--primary-gold);
        padding: 5px 0 10px 0; 
        justify-content: space-around; 
        align-items: flex-end; /* 底部對齊，讓放大的 icon 往上凸 */
        z-index: 1000; 
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8), inset 0 5px 10px rgba(255, 255, 255, 0.2);
        border-radius: 20px 20px 0 0; /* 圓角更像遊戲 UI */
    }
    
    .tab-item {
        text-decoration: none; display: flex; flex-direction: column;
        align-items: center; justify-content: flex-end;
        transition: var(--transition-smooth); flex: 1;
        position: relative;
    }
    
    /* 圖片大小與基礎光暈 */
    .tab-img {
        width: 50px; /* 未選中時的基礎大小 */
        height: auto;
        margin-bottom: 5px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Q彈動畫 */
        filter: drop-shadow(0 0 5px rgba(255,215,0,0.4)); /* 基礎微光 */
    }

    /* --- 文字樣式：純白、紫色外框、發光 --- */
    .tab-label {
        font-family: 'Noto Sans TC', 'Helvetica Neue', sans-serif;
        color: #FFFFFF;
        font-size: 1.2rem;
        font-weight: 900;
        letter-spacing: 1px;
        text-shadow: 10 10px 10px rgb(122, 0, 204); /* 紫色外邊框 */
        transition: all 0.3s ease;
    }
    
    /* --- 活躍狀態 (Active)：中心大光芒與再放大 --- */
    .tab-item.active .tab-img { 
        width: 50px; /* 選中時放大 */
        transform: translateY(-5px); /* 往上浮動凸出 */
        filter: drop-shadow(0 0 15px #FFD700) drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    }
    
    .tab-item.active .tab-label { 
        font-size: 1.25rem; /* 字體再放大 */
        color: #ffffff;
    }

    /* 活躍時背後的絢麗呼吸燈背光 */
    .tab-item.active::before {
        content: '';
        position: absolute;
        top: -30px;
        width: 90px;
        height: 90px;
        background: radial-gradient(circle, rgba(255,215,0,0.7) 0%, rgba(255,215,0,0) 60%);
        border-radius: 50%;
        z-index: -1;
        animation: pulseGlow 1.5s infinite alternate;
    }

    /* 確保網頁底部不會被華麗的導覽列擋住內容 */
    body { padding-bottom: 110px; } 
}

/* --- 動畫設定 --- */
@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* --- 底部 CTA 區塊置中 --- */
.cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 90px;
}

/* 跑馬燈容器 */
.marquee-container {
    background: #451472; /* 半透明黑背景，增加文字可讀性 */
    border-bottom: 1px solid var(--primary-gold);
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 1.2rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

/* 滾動動畫內容 */
.marquee-content {
    display: inline-block;
    padding-left: 100%; /* 從右側開始進入 */
    animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* 針對行動端的調整：確保跑馬燈文字不會被截斷太嚴重 */
@media (max-width: 768px) {
    .marquee-container {
        font-size: 0.85rem;
        padding: 5px 0;
    }
}

/* --- 英雄區塊：遊戲跑馬燈 --- */
/* 完全透明無框版本 */
.hero-content {
    max-width: 100%; /* 這裡從原本的 800px 改為 100% */
    opacity: 0; 
    animation: fadeUp 1s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

/* 2. 讓跑馬燈真正突破限制，並讓中間清晰的區域更寬 */
.game-marquee-wrapper {
    width: 100vw;
    max-width: 100vw; 
    overflow-x: auto; /* ★ 允許橫向滑動 */
    overflow-y: hidden;
    margin: 20px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    
    /* ★ 隱藏醜醜的滾動條 */
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    cursor: grab; /* 電腦版提示可拖曳 */
}

.game-marquee-wrapper::-webkit-scrollbar {
    display: none; 
}

.game-marquee-wrapper:active {
    cursor: grabbing;
}

/* 上下透明遮罩 (高級毛玻璃質感) */
.marquee-mask-top,
.marquee-mask-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 45px; 
    z-index: 2;
    pointer-events: none; 
    
    /* 玻璃材質核心設定 */
    background: rgba(0, 0, 0, 0.2); /* 極淡的紫黑色，維持玻璃的通透感 */
    backdrop-filter: blur(8px);       /* 毛玻璃的模糊程度 */
    -webkit-backdrop-filter: blur(8px); /* 支援蘋果 Safari 瀏覽器 */
}

.marquee-mask-top {
    top: 0;
    /* 玻璃下邊緣的金色極細微光，增加立體感 */
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    /* 讓玻璃的邊緣有柔和漸層淡出，不會像死板的長方形 */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.marquee-mask-bottom {
    bottom: 0;
    /* 玻璃上邊緣的金色極細微光 */
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    mask-image: linear-gradient(to top, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 60%, transparent 100%);
}

.game-marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
    padding: 30px 0;
    /* ★ 已經刪除了原本的 animation 屬性 */
}

/* 滑鼠移過去時暫停跑馬燈，方便玩家觀看 */
.game-marquee-track:hover {
    animation-play-state: paused;
}

/* --- 預設 (電腦版) 圖片放大設定 --- */
.game-marquee-track img {
    width: 350px;  /* 從原本的 250px 放大 */
    height: 420px; /* 從原本的 300px 放大，維持原本 5:6 的比例 */
    object-fit: cover;
    border-radius: 16px; /* 圓角稍微加大一點搭配大圖 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 圖片互動效果：懸停時微放大並發光 (這段維持原本的即可，一起覆蓋也沒問題) */
.game-marquee-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); 
    cursor: pointer;
}

/* --- 行動端 (手機版) 專屬設定 --- */
@media (max-width: 768px) {
    .game-marquee-track img {
        width: 200px;  /* 手機螢幕較小，縮小寬度 */
        height: 240px; /* 縮小高度 */
        border-radius: 12px;
    }
}

/* 無縫輪播關鍵動畫 */
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ========================================= */
/* --- 圖片放大燈箱 (Lightbox) 樣式 --- */
/* ========================================= */
.lightbox {
    display: none; /* 預設隱藏，這就是讓 X 消失的關鍵 */
    position: fixed;
    z-index: 9999; /* 確保顯示在所有元素（包含底部導覽列）之上 */
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(13, 0, 26, 0.9); /* 深紫黑色半透明背景 */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 透過 JS 加上 active 時顯示 */
.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border: 3px solid var(--primary-gold);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1); /* 圖片彈出動畫 */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--primary-gold);
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:active {
    color: #FFFFFF;
    transform: scale(1.1);
}