/* ============================================ SUNSHINE THEME - ULTIMATE DARK MODE v2.0 Professional Dark Background with Neon Effects ============================================ */ :root { /* Dark Mode Colors */ --bg-primary: #0a0e27; --bg-secondary: #1a1f3a; --bg-tertiary: #2d3561; --text-primary: #ffffff; --text-secondary: #e0e0e0; --accent-gold: #ffd700; --accent-neon: #00ff99; --accent-purple: #9d4edd; --border-color: #3d4575; } /* Global Dark Theme */ * { margin: 0; padding: 0; box-sizing: border-box; } html, body { background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1435 100%); color: var(--text-primary); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 16px; line-height: 1.6; letter-spacing: 0.5px; overflow-x: hidden; } /* Scrollbar Styling */ ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-track { background: var(--bg-secondary); } ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent-gold), var(--accent-neon)); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--accent-neon), var(--accent-gold)); } /* ======================== NAVIGATION MENU ======================== */ nav.dark-menu { background: linear-gradient(90deg, #1a1f3a 0%, #2d3561 50%, #1a1f3a 100%); padding: 1.5rem 2rem; border-bottom: 2px solid var(--accent-gold); box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); } nav.dark-menu ul { list-style: none; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; } nav.dark-menu a { color: var(--text-primary); text-decoration: none; font-weight: 600; font-size: 1.1rem; padding: 0.75rem 1.5rem; border-radius: 8px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; } nav.dark-menu a::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, var(--accent-gold), var(--accent-neon)); z-index: -1; transition: left 0.4s ease; } nav.dark-menu a:hover { color: var(--bg-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4); } nav.dark-menu a:hover::before { left: 0; } /* ======================== HEADERS & TYPOGRAPHY ======================== */ h1, h2, h3, h4, h5, h6 { color: var(--text-primary); font-weight: 700; margin: 1.5rem 0; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); } h1 { font-size: 3.5rem; background: linear-gradient(135deg, var(--accent-gold), var(--accent-neon)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; } h2 { font-size: 2.5rem; color: var(--accent-gold); text-shadow: 0 0 15px rgba(255, 215, 0, 0.3); } h3 { font-size: 1.8rem; color: var(--accent-neon); } /* ======================== BUTTONS ======================== */ .btn, button { background: linear-gradient(135deg, var(--accent-gold), #ffed4e); color: var(--bg-primary); border: none; padding: 12px 28px; font-size: 1rem; font-weight: 700; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); text-transform: uppercase; letter-spacing: 1px; } .btn:hover, button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); background: linear-gradient(135deg, #ffed4e, var(--accent-gold)); } .btn:active, button:active { transform: translateY(-1px); } .btn-secondary { background: linear-gradient(135deg, var(--accent-neon), #00ff88); color: var(--bg-primary); } .btn-secondary:hover { box-shadow: 0 8px 25px rgba(0, 255, 153, 0.5); } /* ======================== CONTAINERS & CARDS ======================== */ .container { max-width: 1200px; margin: 0 auto; padding: 2rem; } .card, .box { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; margin: 1.5rem 0; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); transition: all 0.4s ease; backdrop-filter: blur(5px); } .card:hover, .box:hover { border-color: var(--accent-gold); box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2); transform: translateY(-5px); } .card-header { border-bottom: 2px solid var(--accent-gold); padding-bottom: 1rem; margin-bottom: 1rem; } .card-footer { border-top: 2px solid var(--border-color); padding-top: 1rem; margin-top: 1rem; } /* ======================== FORMS ======================== */ input, textarea, select { background: var(--bg-tertiary); color: var(--text-primary); border: 2px solid var(--border-color); padding: 12px 16px; border-radius: 8px; font-size: 1rem; transition: all 0.3s ease; font-family: inherit; } input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); } label { color: var(--text-secondary); font-weight: 600; display: block; margin-bottom: 0.5rem; } /* ======================== FOOTER ======================== */ footer { background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%); color: var(--text-secondary); padding: 3rem 2rem; border-top: 2px solid var(--accent-gold); margin-top: 3rem; text-align: center; } footer a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s ease; } footer a:hover { color: var(--accent-neon); text-shadow: 0 0 10px rgba(0, 255, 153, 0.5); } /* ======================== RESPONSIVE DESIGN ======================== */ @media (max-width: 768px) { h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } nav.dark-menu ul { gap: 1rem; justify-content: space-around; } .container { padding: 1rem; } } */

The Kings Ark Mingle ™

Loading...
ARGPT Megacity | Live CNN + Volcano Alert
KINGS ARK
🏠 Dashboard 🎬 Reels 🧿 Mingle+ B2B 🧿 Ark Music™ 🎮 The Kings Ark™ 🎮 ARKGPT ™ Megacity 📰 Blog 📄 Pages 💱 Wallet 🎬 User Movies 🧿 News 📄 Pages 💱 Home 🎬 The Kings Ark™ 🧿 Walmart USA 🧿 Microsoft Solutions 🎮 Amazon Store 📺 Watch 👥 Groups 🧿 Advertiser 🎮 Games 💬 Forum 🛒 Marketplace 🛒 Anycubic 3D ✉️ Funding ✉️ Offers ⚙️ Global Map

ARK Entertainment

Watch Live TV:

🎁 TikTok Ad Credits

🎁 Claim Ad Credits

Unlock TikTok’s limited-time “Spend X, Get Y” ad credit offers.

🔹 Spend $200 → Get $200 back
🔹 Spend $6,000 → Get $6,000 back

⏳ Valid within 30 days of registration.
🚀 Unlock Offer
Close
👑
👑 ARGPT — Ark Intelligence