:root {
    --bg-color: #030303;
    --header-bg: rgba(8, 8, 8, 0.96);
    --card-bg: #0d0d0d;
    --main-color: #107C10;
    --accent-color: #00C3FF;
    --brand-gradient: linear-gradient(135deg, #107C10 0%, #00C3FF 100%);
    --text-white: #ffffff;
    --text-gray: #a8a8a8;
    --glow-green: rgba(16, 124, 16, 0.4);
    --glow-cyan: rgba(0, 195, 255, 0.3);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: none; }
body { 
    font-family: 'Cairo', sans-serif; 
    background-color: var(--bg-color); 
    color: var(--text-white); 
    margin: 0; 
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.modal-open { overflow: hidden; }

/* ============================
   ANNOUNCEMENT BANNER - Premium
   ============================ */
.announcement-banner {
    position: relative;
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    z-index: 500;
    animation: bannerSlide 0.5s ease;
    overflow: hidden;
}

.announcement-banner.fixed {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    animation: bannerShine 4s ease-in-out infinite;
}

@keyframes bannerShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.banner-text-content {
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.announcement-banner.marquee .banner-text-content {
    animation: marqueeScroll 12s linear infinite;
}

.announcement-banner.pulse {
    animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerSlide {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes marqueeScroll {
    0% { transform: translateX(50%); }
    100% { transform: translateX(-50%); }
}

@keyframes bannerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.banner-btn {
    background: rgba(255,255,255,0.2);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.banner-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.02);
}

/* ============================
   SPLASH SCREEN - Premium
   ============================ */
#splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, #000000 0%, #050508 50%, #020204 100%);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
}

.splash-bg-effects { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.splash-glow {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5;
    animation: glowFloat 6s ease-in-out infinite;
}
.splash-glow.glow-1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, var(--main-color) 0%, transparent 70%);
    top: 5%; left: 0%;
}
.splash-glow.glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: 5%; right: 0%; animation-delay: 3s;
}

@keyframes glowFloat {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

.splash-content { text-align: center; width: 100%; max-width: 400px; padding: 20px; position: relative; z-index: 1; }

.logo-wrapper { 
    position: relative; width: 180px; height: 180px; margin: 0 auto 30px;
    display: flex; align-items: center; justify-content: center;
}
.logo-ring {
    position: absolute; width: 160px; height: 160px;
    border: 2px solid transparent; border-top-color: var(--accent-color);
    border-right-color: rgba(0, 195, 255, 0.3); border-radius: 50%;
    animation: logoSpin 2.5s linear infinite;
}
.logo-ring.ring-2 {
    width: 175px; height: 175px; border-top-color: var(--main-color);
    border-right-color: rgba(16, 124, 16, 0.3);
    animation-direction: reverse; animation-duration: 3.5s;
}
@keyframes logoSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.splash-logo {
    width: 110px; height: 110px; object-fit: contain; border-radius: 50%;
    filter: drop-shadow(0 0 40px rgba(0, 195, 255, 0.5));
    animation: logoPulse 2.5s ease-in-out infinite; position: relative; z-index: 2;
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.splash-title {
    font-size: 38px; font-weight: 900; letter-spacing: 6px; margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(0, 195, 255, 0.3);
}
.splash-subtitle { font-size: 14px; color: #555; margin-top: 10px; margin-bottom: 50px; letter-spacing: 1px; }

.loading-container { width: 100%; max-width: 260px; margin: 0 auto; }
.loading-track {
    width: 100%; height: 4px; background: rgba(255,255,255,0.06); 
    border-radius: 10px; overflow: hidden;
}
.loading-fill {
    height: 100%; width: 0%; background: var(--brand-gradient); border-radius: 10px;
    animation: loadingFill 4.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.6);
}
@keyframes loadingFill { 0% { width: 0%; } 100% { width: 100%; } }

.loading-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.loading-dots span {
    width: 8px; height: 8px; background: var(--accent-color); border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px var(--glow-cyan);
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}

.loading-text { font-size: 13px; color: #4a4a4a; margin-top: 20px; }

.features-list { display: flex; justify-content: center; gap: 28px; margin-top: 50px; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; color: #777; }
.feature-icon {
    width: 48px; height: 48px;
    background: linear-gradient(145deg, rgba(0, 195, 255, 0.12), rgba(16, 124, 16, 0.08));
    border: 1px solid rgba(0, 195, 255, 0.2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 195, 255, 0.1);
}
.feature-icon svg { width: 22px; height: 22px; color: var(--accent-color); }

/* ============================
   HEADER - Premium App Style
   ============================ */
header {
    position: relative;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(3, 3, 3, 0.96) 100%);
    z-index: 100;
    padding: 18px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container { 
    max-width: 600px; 
    margin: 0 auto; 
    padding: 0 16px; 
}

.top-bar { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 18px; 
}

.brand { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 900; 
    font-size: 20px;
    letter-spacing: 1.5px;
}

.nav-logo { 
    width: 44px; 
    height: 44px; 
    border-radius: 14px; 
    border: 2px solid rgba(0, 195, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 195, 255, 0.25);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 6px 25px rgba(0, 195, 255, 0.35);
}

/* Search Box - Premium Style */
.search-box { 
    position: relative; 
    margin-bottom: 16px; 
}

.search-box input {
    width: 100%; 
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 15px 52px 15px 20px;
    border-radius: 16px; 
    color: #fff; 
    font-family: 'Cairo'; 
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.32);
}

.search-box input:focus { 
    border-color: rgba(0, 195, 255, 0.45);
    background: rgba(0, 195, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 195, 255, 0.1), 0 4px 20px rgba(0, 195, 255, 0.1);
}

.search-icon { 
    position: absolute; 
    right: 18px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: rgba(255,255,255,0.35);
    font-size: 16px;
    transition: color 0.3s ease;
}

.search-box input:focus + .search-icon,
.search-box:focus-within .search-icon {
    color: var(--accent-color);
}

/* Categories - Premium Pill Style */
.categories { 
    display: flex; 
    gap: 10px; 
    overflow-x: auto; 
    padding: 4px 0 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.categories::-webkit-scrollbar { display: none; }

.cat-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    padding: 11px 22px;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Cairo';
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cat-btn.active {
    background: var(--brand-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 18px var(--glow-green), 0 0 30px rgba(16, 124, 16, 0.2);
}

.cat-btn:not(.active):hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.12);
    color: white;
}

/* ============================
   FIXED BOTTOM CTA BAR - Premium
   ============================ */
.fixed-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 16px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 1500;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.fixed-btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    padding: 14px 26px; 
    border-radius: 14px; 
    font-family: 'Cairo', sans-serif;
    font-weight: 700; 
    font-size: 14px; 
    cursor: pointer; 
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-btn:active {
    transform: scale(0.96);
}

.fixed-btn.primary {
    flex: 1;
    max-width: 220px;
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 22px var(--glow-green), 0 0 40px rgba(16, 124, 16, 0.15);
}

.fixed-btn.primary:hover {
    box-shadow: 0 6px 28px var(--glow-green), 0 0 50px rgba(16, 124, 16, 0.25);
    transform: translateY(-1px);
}

.fixed-btn.primary i { font-size: 16px; }

.fixed-btn.secondary {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    padding: 14px 18px;
}

.fixed-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: white;
}

.fixed-btn.secondary svg { width: 16px; height: 16px; }

@media (max-width: 400px) {
    .fixed-cta-bar { padding: 12px 14px; gap: 10px; }
    .fixed-btn { padding: 12px 18px; font-size: 13px; border-radius: 12px; }
    .fixed-btn.secondary { padding: 12px 14px; }
}

/* ============================
   MAIN CONTENT - Premium Style
   ============================ */
.main-content {
    padding-top: 0;
    padding-bottom: 100px;
    min-height: 100vh;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

/* ============================
   BENEFITS SECTION - Premium
   ============================ */
.benefits-section {
    position: relative; 
    max-width: 600px; 
    margin: 0 auto;
    padding: 20px 16px 16px; 
    overflow: hidden;
}

.benefits-bg-aura {
    position: absolute; top: 50%; left: 50%; width: 550px; height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 195, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-container { position: relative; z-index: 1; }

.benefits-header { text-align: center; margin-bottom: 16px; }

.benefits-title {
    font-size: 20px; font-weight: 900; margin: 0 0 10px 0;
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.benefits-accent-line {
    width: 55px; height: 3px; background: var(--brand-gradient);
    margin: 0 auto; border-radius: 3px;
    box-shadow: 0 0 15px var(--glow-cyan);
}

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

.benefit-card {
    position: relative; border-radius: 18px; overflow: hidden;
    opacity: 0; transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card.visible { opacity: 1; transform: translateY(0); }

.benefit-card:active { transform: scale(0.96); }

.benefit-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 18px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card-bg {
    border-color: rgba(0, 195, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 195, 255, 0.08);
}

.benefit-card-content {
    position: relative; z-index: 1; padding: 20px 12px;
    text-align: center; display: flex; flex-direction: column; align-items: center;
}

.benefit-icon-wrap { 
    width: 48px; height: 48px; 
    margin-bottom: 12px; 
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, rgba(0, 195, 255, 0.1), rgba(0, 195, 255, 0.05));
    border: 1px solid rgba(0, 195, 255, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrap {
    background: linear-gradient(145deg, rgba(0, 195, 255, 0.15), rgba(0, 195, 255, 0.08));
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.15);
}

.benefit-icon { width: 24px; height: 24px; color: var(--accent-color); }
.benefit-icon.gold-icon { color: #FFD700; filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4)); }

.benefit-title { font-size: 13px; font-weight: 700; margin: 0 0 5px 0; color: #fff; }
.benefit-desc { font-size: 10px; color: #555; margin: 0; line-height: 1.5; }

@media (max-width: 400px) {
    .benefits-grid { gap: 8px; }
    .benefit-card-content { padding: 16px 10px; }
    .benefit-icon-wrap { width: 42px; height: 42px; }
    .benefit-icon { width: 20px; height: 20px; }
    .benefit-title { font-size: 11px; }
    .benefit-desc { font-size: 9px; }
}

/* ============================
   GAMES SECTION - Premium Style
   ============================ */
.games-section { 
    max-width: 600px; 
    margin: 0 auto; 
    padding: 22px 16px 30px; 
}

.games-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 14px; 
}

.game-card {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(8, 8, 8, 0.95));
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:active {
    transform: scale(0.96);
}

.game-card:hover { 
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(16, 124, 16, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(16, 124, 16, 0.15),
                0 0 60px rgba(16, 124, 16, 0.08);
}

.image-wrapper { 
    width: 100%; 
    aspect-ratio: 2/3; 
    position: relative; 
    overflow: hidden; 
    background: linear-gradient(145deg, #141414, #080808);
    border-radius: 17px;
}

.skeleton {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #141414 25%, #1e1e1e 50%, #141414 75%);
    background-size: 200% 100%; 
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.game-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0; 
    transition: opacity 0.5s ease, transform 0.35s ease;
}
.game-image.loaded { opacity: 1; }
.game-card:hover .game-image.loaded { transform: scale(1.08); }

.badge { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 800;
    color: white; 
    z-index: 3;
    backdrop-filter: blur(12px);
    letter-spacing: 0.5px;
}
.badge.hot { 
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    box-shadow: 0 4px 18px rgba(255, 65, 108, 0.45);
}
.badge.new { 
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    box-shadow: 0 4px 18px rgba(0, 184, 148, 0.45);
}

.status-msg { text-align: center; padding: 40px 20px; color: #4a4a4a; font-size: 14px; }

/* Responsive Grid */
@media (min-width: 450px) {
    .games-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 600px) {
    .games-section { max-width: 700px; }
    .games-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* ============================
   GAME MODAL - Premium
   ============================ */
.modal {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
    z-index: 5000; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
    background: linear-gradient(145deg, #141414 0%, #0a0a0a 100%); 
    width: 100%; max-width: 380px; border-radius: 20px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.08); position: relative;
    animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-header { text-align: center; padding: 24px; background: rgba(255,255,255,0.02); }
.modal-header img { width: 85px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.4); }
.modal-body { padding: 22px; text-align: center; }
.modal-body h2 { font-size: 18px; margin: 0 0 10px; }
.modal-tag { color: var(--accent-color); font-size: 11px; font-weight: bold; letter-spacing: 0.5px; }
.modal-text { color: #888; font-size: 13px; line-height: 1.6; margin: 14px 0; }
.modal-cta {
    display: block; background: var(--brand-gradient); padding: 12px;
    border-radius: 50px; color: white; text-decoration: none; font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 20px var(--glow-green);
    transition: all 0.3s ease;
}
.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--glow-green);
}
.close-btn { 
    position: absolute; top: 12px; left: 12px; 
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #888; font-size: 20px; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ============================
   BENEFITS MODAL - Premium
   ============================ */
.benefits-modal {
    position: fixed; inset: 0; z-index: 6000;
    display: none; align-items: center; justify-content: center; padding: 15px;
}
.benefits-modal.active { display: flex; }

.benefits-modal-overlay {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(15px); opacity: 0; transition: opacity 0.35s;
}
.benefits-modal.active .benefits-modal-overlay { opacity: 1; }

.benefits-modal-box {
    position: relative; width: 100%; max-width: 420px; max-height: 85vh;
    background: linear-gradient(145deg, #0d0d0d 0%, #050505 100%);
    border: 1px solid rgba(0, 195, 255, 0.12); border-radius: 22px;
    overflow: hidden; opacity: 0; transform: translateY(25px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 195, 255, 0.05);
}
.benefits-modal.active .benefits-modal-box { opacity: 1; transform: translateY(0) scale(1); }

.benefits-modal-close {
    position: absolute; top: 14px; left: 14px; width: 32px; height: 32px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: all 0.3s ease;
}
.benefits-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}
.benefits-modal-close svg { width: 14px; height: 14px; color: #777; }

.benefits-modal-content {
    padding: 30px 22px; overflow-y: auto; max-height: 85vh;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.bm-section { text-align: center; }
.bm-icon-badge {
    width: 54px; height: 54px; margin: 0 auto 16px;
    background: linear-gradient(145deg, rgba(0, 195, 255, 0.12), rgba(0, 195, 255, 0.06));
    border: 1px solid rgba(0, 195, 255, 0.2);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 25px rgba(0, 195, 255, 0.1);
}
.bm-icon-badge svg { width: 26px; height: 26px; color: var(--accent-color); }

.bm-title {
    font-size: 22px; font-weight: 900; margin: 0 0 6px 0;
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bm-subtitle { font-size: 12px; color: #555; margin: 0 0 14px 0; }
.bm-highlight {
    font-size: 14px; font-weight: 600; color: var(--accent-color);
    margin: 0 0 20px 0; padding: 12px 16px;
    background: rgba(0, 195, 255, 0.06); border-radius: 10px;
    border: 1px solid rgba(0, 195, 255, 0.1);
}

.bm-list { list-style: none; padding: 0; margin: 0; text-align: right; }
.bm-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 13px; color: #bbb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.bm-list li:last-child { border-bottom: none; }
.bm-list li svg { width: 18px; height: 18px; color: var(--main-color); flex-shrink: 0; }
.bm-list.store-benefits li svg { color: var(--accent-color); }

.bm-divider {
    height: 1px; margin: 22px 0;
    background: linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.2), transparent);
}
.bm-section-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 16px 0; text-align: center; }

.bm-cta-section { margin-top: 26px; text-align: center; }
.bm-cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--brand-gradient); color: white; text-decoration: none;
    padding: 15px 40px; border-radius: 50px; font-weight: 700; font-size: 15px;
    box-shadow: 0 4px 22px var(--glow-green);
    animation: ctaPulse 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}
.bm-cta-btn:hover {
    transform: translateY(-2px);
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 22px var(--glow-green); }
    50% { box-shadow: 0 6px 30px rgba(16, 124, 16, 0.55); }
}
.bm-cta-btn i { font-size: 18px; }
.bm-cta-subtext { font-size: 11px; color: #666; margin: 14px 0 0 0; }

/* ============================
   FLOATING BUTTON - Premium
   ============================ */
.float-btn {
    position: fixed; 
    bottom: 100px; 
    right: 20px; 
    width: 58px; 
    height: 58px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border-radius: 18px; 
    color: white; 
    font-size: 26px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 10px 30px rgba(214, 36, 159, 0.45), 0 0 40px rgba(214, 36, 159, 0.2); 
    z-index: 2000; 
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 14px 40px rgba(214, 36, 159, 0.55), 0 0 50px rgba(214, 36, 159, 0.3);
}

.float-btn:active {
    transform: scale(0.92);
}

/* Guarantee Link - Premium */
.guarantee-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.3s ease;
}

.guarantee-link:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: white;
}

.guarantee-link:active {
    transform: scale(0.96);
}

.guarantee-link svg {
    opacity: 0.6;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 400px) {
    .splash-title { font-size: 28px; letter-spacing: 3px; }
    .logo-wrapper { width: 140px; height: 140px; }
    .logo-ring { width: 120px; height: 120px; }
    .logo-ring.ring-2 { width: 135px; height: 135px; }
    .splash-logo { width: 85px; height: 85px; }
    .features-list { gap: 16px; }
    .feature-icon { width: 40px; height: 40px; }
    .feature-icon svg { width: 18px; height: 18px; }
    .feature-item { font-size: 10px; }
}

/* ============================
   GUARANTEE PAGE STYLES
   ============================ */
.guarantee-page {
    padding-top: 80px;
    min-height: 100vh;
}

.guarantee-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

.guarantee-header .top-bar { margin-bottom: 0; }

.guarantee-header .brand { text-decoration: none; color: inherit; }

.back-link {
    display: flex; align-items: center; gap: 6px;
    color: var(--text-gray); text-decoration: none;
    font-size: 13px; font-weight: 500;
    padding: 9px 15px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}
.back-link:hover {
    color: var(--accent-color);
    border-color: rgba(0, 195, 255, 0.3);
    background: rgba(0, 195, 255, 0.05);
}

.guarantee-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.guarantee-hero {
    position: relative;
    text-align: center;
    padding: 60px 20px 50px;
    margin-bottom: 40px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 550px; height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, 
        rgba(0, 195, 255, 0.1) 0%, 
        rgba(16, 124, 16, 0.05) 40%,
        transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; }

.hero-icon {
    width: 85px; height: 85px;
    margin: 0 auto 26px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, rgba(0, 195, 255, 0.15), rgba(16, 124, 16, 0.1));
    border: 1px solid rgba(0, 195, 255, 0.25);
    border-radius: 26px;
    box-shadow: 0 0 50px rgba(0, 195, 255, 0.15);
}
.hero-icon svg {
    width: 42px; height: 42px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.4));
}

.guarantee-hero .hero-title {
    font-size: 38px; font-weight: 900; margin: 0 0 14px;
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.guarantee-hero .hero-subtitle {
    font-size: 16px; color: #555; margin: 0 0 26px;
}

.guarantee-hero .hero-accent-line {
    width: 100px; height: 4px;
    background: var(--brand-gradient);
    margin: 0 auto; border-radius: 4px;
    box-shadow: 0 0 30px var(--glow-cyan);
}

/* Policy Sections */
.policy-sections { margin-bottom: 50px; }

.policy-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 700px) {
    .policy-container { grid-template-columns: repeat(2, 1fr); }
}

.policy-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95) 0%, rgba(6, 6, 6, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.policy-card:hover .policy-card-bg {
    border-color: rgba(0, 195, 255, 0.25);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45), 0 0 45px rgba(0, 195, 255, 0.1);
}

.policy-card-content {
    position: relative; z-index: 1;
    padding: 32px 26px;
}

.policy-icon {
    width: 60px; height: 60px;
    margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 195, 255, 0.08);
    border: 1px solid rgba(0, 195, 255, 0.15);
    border-radius: 18px;
    transition: all 0.3s ease;
}
.policy-card:hover .policy-icon {
    background: rgba(0, 195, 255, 0.12);
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.15);
}
.policy-icon svg {
    width: 30px; height: 30px;
    color: var(--accent-color);
}

.policy-title {
    font-size: 21px; font-weight: 800;
    color: #fff; margin: 0 0 20px;
}

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

.policy-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 14px; color: #999; line-height: 1.75;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.policy-list li:last-child { border-bottom: none; }

.list-icon {
    flex-shrink: 0;
    color: var(--main-color);
    font-weight: bold;
    font-size: 16px;
}
.list-icon.warning { color: #f39c12; }

/* Important Card */
.policy-card.important-card .policy-card-bg {
    border-color: rgba(243, 156, 18, 0.12);
}
.policy-card.important-card .policy-icon {
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.2);
}
.policy-card.important-card .policy-icon svg { color: #f39c12; }

/* Contact CTA Section */
.contact-cta-section { margin-bottom: 50px; }

.cta-container {
    position: relative;
    text-align: center;
    padding: 65px 32px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(16, 124, 16, 0.1) 0%, rgba(0, 195, 255, 0.06) 100%);
    border: 1px solid rgba(0, 195, 255, 0.15);
}

.cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 450px; height: 220px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(16, 124, 16, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
    font-size: 30px; font-weight: 900;
    color: #fff; margin: 0 0 12px;
}

.cta-subtitle {
    font-size: 15px; color: #666;
    margin: 0 0 30px;
}

.cta-button {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--brand-gradient);
    color: white; text-decoration: none;
    padding: 17px 40px; border-radius: 50px;
    font-weight: 700; font-size: 17px;
    box-shadow: 0 6px 30px var(--glow-green);
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(16, 124, 16, 0.55);
}
.cta-button i { font-size: 22px; }

/* Footer */
.guarantee-footer {
    text-align: center;
    padding: 32px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #3a3a3a;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
    .guarantee-page { padding-top: 70px; }
    .guarantee-hero { padding: 40px 15px 35px; }
    .hero-icon { width: 70px; height: 70px; border-radius: 20px; }
    .hero-icon svg { width: 35px; height: 35px; }
    .guarantee-hero .hero-title { font-size: 30px; }
    .guarantee-hero .hero-subtitle { font-size: 14px; }
    .policy-card-content { padding: 26px 20px; }
    .policy-title { font-size: 18px; }
    .policy-list li { font-size: 13px; }
    .cta-container { padding: 45px 22px; }
    .cta-title { font-size: 26px; }
    .cta-button { padding: 15px 32px; font-size: 15px; }
    .guarantee-link { font-size: 11px; padding: 6px 12px; }
}
