@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #000000;
    --bg-sub: #0a0b10;
    --bg-card: #14151f;
    --bg-input: #1d1f2e;
    --border-card: rgba(255, 255, 255, 0.1);
    --ios-blue: #0A84FF;
    --ios-blue-hover: #0070e0;
    --text-main: #FFFFFF;
    --text-muted: #8E8E93;
    --card-radius: 18px;
    --input-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Urgency Top Banner */
.urgency-banner {
    background: linear-gradient(90deg, #2b0b0e 0%, #3d1015 50%, #2b0b0e 100%);
    color: #FF453A;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 69, 58, 0.35);
    letter-spacing: -0.2px;
}
.urgency-banner span {
    color: #FFD60A;
    font-weight: 800;
    text-decoration: underline;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.5px;
}
.brand-apple-icon {
    font-size: 22px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(48, 209, 88, 0.15);
    border: 1px solid rgba(48, 209, 88, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #30D158;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px 30px;
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #FFFFFF 0%, #8E8E93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
}

.section-title {
    max-width: 1100px;
    margin: 20px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Homepage Games Grid Clean Redesign */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 22px;
    padding: 16px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

/* Card Specific Glows & Accents */
.game-card.card-roblox:hover { border-color: #00A2FF; box-shadow: 0 15px 35px rgba(0, 162, 255, 0.22); }
.game-card.card-fortnite:hover { border-color: #E5FF00; box-shadow: 0 15px 35px rgba(229, 255, 0, 0.18); }
.game-card.card-freefire:hover { border-color: #FF7A00; box-shadow: 0 15px 35px rgba(255, 122, 0, 0.22); }
.game-card.card-brawl:hover { border-color: #FFD60A; box-shadow: 0 15px 35px rgba(255, 214, 10, 0.22); }
.game-card.card-gta:hover { border-color: #30D158; box-shadow: 0 15px 35px rgba(48, 209, 88, 0.22); }
.game-card.card-among:hover { border-color: #FF453A; box-shadow: 0 15px 35px rgba(255, 69, 58, 0.22); }

.card-icon-banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.card-icon-banner img {
    height: 60px;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}
.game-card:hover .card-icon-banner img {
    transform: scale(1.12);
}

.card-content {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 14px;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-header-flex h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
}
.badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: #cbd5e1;
}
.badge.hot { background: rgba(255, 69, 58, 0.15); color: #FF453A; border: 1px solid rgba(255,69,58,0.3); }

.card-desc {
    color: #94a3b8 !important; /* Fixes bright green paragraph bug */
    font-size: 14px !important;
    line-height: 1.55;
    font-weight: 400 !important;
    margin: 0;
}

.card-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
}
.reward-tag {
    font-size: 13px;
    font-weight: 700;
    color: #30D158;
}
.action-arrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--ios-blue);
    transition: transform 0.2s;
}
.game-card:hover .action-arrow {
    transform: translateX(4px);
}

/* Landing Page Container */
.landing-container {
    max-width: 520px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
}
.btn-back {
    display: inline-block;
    color: var(--ios-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* iPhone Box */
.iphone-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 28px;
    padding: 30px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
}
.landing-header {
    text-align: center;
    margin-bottom: 28px;
}
.landing-game-logo {
    height: 50px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(255,255,255,0.15));
}
.landing-header h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.6px;
    margin-bottom: 6px;
}
.landing-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Steps */
.step { display: none; }
.step.active { display: block; animation: fadeIn 0.3s ease; }

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

.ios-input-group {
    margin-bottom: 22px;
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
    letter-spacing: -0.1px;
}
.ios-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--input-radius);
    padding: 16px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}
.ios-input:focus {
    border-color: var(--ios-blue);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.package-card {
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.package-card.selected {
    border-color: var(--ios-blue);
    background: rgba(10, 132, 255, 0.15);
}
.pkg-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ios-blue);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}
.pkg-amount {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}
.pkg-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

/* Devices Flex */
.devices-flex {
    display: flex;
    gap: 8px;
}
.device-btn {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 6px;
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.device-btn.selected {
    border-color: var(--ios-blue);
    background: rgba(10, 132, 255, 0.15);
    color: #fff;
}

/* Buttons */
.btn-primary-ios {
    width: 100%;
    background: var(--ios-blue);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
}
.btn-primary-ios:hover { background: var(--ios-blue-hover); }
.btn-primary-ios:active { transform: scale(0.98); }

.btn-secondary-ios {
    flex: 1;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Confirm Profile */
.confirm-profile {
    background: var(--bg-input);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}
.avatar-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--ios-blue);
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
}
.avatar-box img { width: 100%; height: 100%; object-fit: cover; }
.lock-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.blur-secured { filter: blur(18px) !important; transform: scale(1.15); opacity: 0.85; }

/* Bottom Widgets */
.bottom-widgets {
    max-width: 900px;
    margin: 20px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}
.widget-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 22px;
    padding: 24px;
}
.widget-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
}

/* Activity Feed */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-input);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Comments */
.comment-input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.comment-input-row input {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 12px 18px;
    color: #fff;
    outline: none;
}
.comment-input-row button {
    background: var(--ios-blue);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
}
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.comment {
    display: flex;
    gap: 12px;
}
.comment img {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}
.comment-author {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.comment-time {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}
.comment-text {
    font-size: 14px;
    color: #cbd5e1;
    margin-top: 3px;
    line-height: 1.4;
}

/* Floating Live Chat */
.floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: rgba(20, 21, 31, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 999;
    overflow: hidden;
}
.floating-chat-header {
    background: rgba(255,255,255,0.05);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-msgs-container {
    height: 180px;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
}
.chat-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.chat-msg img, .chat-item img {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}
.msg-content {
    background: var(--bg-input);
    padding: 8px 12px;
    border-radius: 12px;
    border-top-left-radius: 2px;
    max-width: 220px;
}
.msg-author { font-weight: 700; color: var(--ios-blue); margin-bottom: 2px; }

/* Modals */
.modal-overlay, .custom-modal-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.modal-overlay.active, .custom-modal-overlay.active { display: flex; animation: fadeIn 0.2s ease; }
.modal-card, .custom-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 420px;
    width: 100%;
    text-align: center;
}
.spinner {
    width: 48px; height: 48px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--ios-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.console-box {
    background: #000;
    border-radius: 12px;
    padding: 16px;
    height: 120px;
    overflow-y: auto;
    text-align: left;
    font-family: monospace;
    font-size: 12px;
    color: #30D158;
    margin: 20px 0;
}
.console-box p { margin-bottom: 6px; }

/* ==========================================================================
   GAME NICHE OFFICIAL THEMES (Authentic Brand UI DNA)
   ========================================================================== */

/* 1. FORTNITE THEME (Epic Battle Royale Purple & Neon Yellow) */
body.theme-fortnite {
    --bg-main: #0a0b12;
    --bg-sub: #121024;
    --bg-card: #1c1836;
    --bg-input: #28224c;
    --border-card: rgba(229, 255, 0, 0.25);
    --ios-blue: #E5FF00;
    --ios-blue-hover: #ccdd00;
}
body.theme-fortnite .landing-container {
    background: radial-gradient(circle at top, #2b124c 0%, #0a0b12 70%);
}
body.theme-fortnite .btn-primary-ios {
    background: #E5FF00 !important;
    color: #000000 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 25px rgba(229, 255, 0, 0.4) !important;
}
body.theme-fortnite .package-card.selected {
    border-color: #E5FF00 !important;
    background: rgba(229, 255, 0, 0.1) !important;
}
body.theme-fortnite .pkg-badge {
    background: #E5FF00 !important;
    color: #000 !important;
}

/* 2. ROBLOX THEME (Official Dark Slate & Builder Blue) */
body.theme-roblox {
    --bg-main: #111216;
    --bg-sub: #191b1f;
    --bg-card: #232527;
    --bg-input: #393b3d;
    --border-card: rgba(255, 255, 255, 0.12);
    --ios-blue: #00A2FF;
    --ios-blue-hover: #0088dd;
}
body.theme-roblox .landing-container {
    background: #111216;
}
body.theme-roblox .btn-primary-ios {
    background: #00A2FF !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 162, 255, 0.35) !important;
}
body.theme-roblox .iphone-box, body.theme-roblox .package-card, body.theme-roblox .ios-input {
    border-radius: 8px !important;
}
body.theme-roblox .package-card.selected {
    border-color: #00A2FF !important;
    background: rgba(0, 162, 255, 0.12) !important;
}

/* 3. GTA V THEME (Rockstar Noir Black & Maze Gold) */
body.theme-gta {
    --bg-main: #080808;
    --bg-sub: #0f0f0f;
    --bg-card: #161616;
    --bg-input: #222222;
    --border-card: rgba(255, 165, 0, 0.3);
    --ios-blue: #FFA500;
    --ios-blue-hover: #dd8800;
}
body.theme-gta .landing-container {
    background: linear-gradient(180deg, #181c14 0%, #080808 60%);
}
body.theme-gta .iphone-box, body.theme-gta .package-card, body.theme-gta .btn-primary-ios, body.theme-gta .ios-input, body.theme-gta .device-btn {
    border-radius: 2px !important;
}
body.theme-gta .btn-primary-ios {
    background: #FFA500 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 25px rgba(255, 165, 0, 0.35) !important;
}
body.theme-gta .landing-header h1 {
    font-family: 'Arial Black', Impact, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: -0.5px !important;
}
body.theme-gta .package-card.selected {
    border-color: #FFA500 !important;
    background: rgba(255, 165, 0, 0.1) !important;
}

/* 4. FREE FIRE THEME (Combat Carbon & Booyah Orange) */
body.theme-freefire {
    --bg-main: #0b0c10;
    --bg-sub: #14151c;
    --bg-card: #1f212d;
    --bg-input: #2a2d3d;
    --border-card: rgba(255, 122, 0, 0.3);
    --ios-blue: #FF7A00;
    --ios-blue-hover: #e06800;
}
body.theme-freefire .landing-container {
    background: radial-gradient(circle at top, #301608 0%, #0b0c10 70%);
}
body.theme-freefire .btn-primary-ios {
    background: linear-gradient(90deg, #FF9F0A 0%, #FF6A00 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 25px rgba(255, 122, 0, 0.4) !important;
}
body.theme-freefire .package-card.selected {
    border-color: #FF7A00 !important;
    background: rgba(255, 122, 0, 0.12) !important;
}

/* 5. BRAWL STARS THEME (Supercell Comic Gold & Blue) */
body.theme-brawlstars {
    --bg-main: #061229;
    --bg-sub: #0c2044;
    --bg-card: #133066;
    --bg-input: #1b4288;
    --border-card: #000000;
    --ios-blue: #FFD60A;
    --ios-blue-hover: #eacc00;
}
body.theme-brawlstars .landing-container {
    background: radial-gradient(circle at center, #163c7e 0%, #061229 80%);
}
body.theme-brawlstars .iphone-box {
    border: 4px solid #000000 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 0 2px rgba(255,255,255,0.1) !important;
}
body.theme-brawlstars .package-card, body.theme-brawlstars .btn-primary-ios, body.theme-brawlstars .device-btn, body.theme-brawlstars .ios-input {
    border: 3px solid #000000 !important;
    border-radius: 12px !important;
}
body.theme-brawlstars .btn-primary-ios {
    background: #FFD60A !important;
    color: #000000 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 0 #b39200, 0 10px 20px rgba(0,0,0,0.5) !important;
    transform: translateY(-2px);
}
body.theme-brawlstars .btn-primary-ios:active {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 #b39200 !important;
}
body.theme-brawlstars .package-card.selected {
    background: rgba(255, 214, 10, 0.2) !important;
    border-color: #FFD60A !important;
}

/* 6. AMONG US THEME (Cosmic Deep Space & Imposter Red) */
body.theme-amongus {
    --bg-main: #05050a;
    --bg-sub: #0b0b14;
    --bg-card: #151524;
    --bg-input: #222238;
    --border-card: rgba(255, 42, 54, 0.3);
    --ios-blue: #FF2A36;
    --ios-blue-hover: #dd1c27;
}
body.theme-amongus .landing-container {
    background: radial-gradient(circle at top, #380c10 0%, #05050a 70%);
}
body.theme-amongus .btn-primary-ios {
    background: #FF2A36 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 25px rgba(255, 42, 54, 0.45) !important;
}
body.theme-amongus .package-card.selected {
    border-color: #FF2A36 !important;
    background: rgba(255, 42, 54, 0.12) !important;
}

/* ==========================================================================
   SECURITY WELCOME GATEWAY (Crawler Protection & Human Verification)
   ========================================================================== */
.security-gate-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #030407;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.security-gate-modal {
    background: #0d0f17;
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 24px;
    padding: 36px 28px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.12), 0 20px 40px rgba(0,0,0,0.9);
    position: relative;
    overflow: hidden;
}
.gate-shield-pulse {
    font-size: 54px;
    margin-bottom: 12px;
    display: inline-block;
    filter: drop-shadow(0 0 16px rgba(0, 255, 255, 0.6));
    animation: shieldPulse 2s infinite ease-in-out;
}
@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(0, 255, 255, 0.6)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 28px rgba(0, 255, 255, 0.9)); }
}
.security-gate-modal h2 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 8px;
}
.gate-sub {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 24px;
}
.gate-status-box {
    background: #151824;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    font-size: 13px;
    font-family: monospace;
}
.status-row {
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
}
.status-row span:first-child { color: #64748b; font-weight: 600; }
.txt-cyan { color: #00FFFF; font-weight: 700; }
.txt-green { color: #30D158; font-weight: 700; }

.btn-verify-gate {
    width: 100%;
    background: linear-gradient(135deg, #00A2FF 0%, #00FFFF 100%);
    color: #000;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-verify-gate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}
.btn-verify-gate:active { transform: scale(0.98); }
.checkbox-box { font-size: 18px; }

.gate-footer-note {
    font-size: 11px;
    color: #475569;
    margin-top: 18px;
    letter-spacing: -0.1px;
}
