@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
    --bg-main: #020617; --bg-card: #0f172a; --bg-input: #1e293b;
    --primary: #f59e0b; --primary-hover: #d97706;
    --text-light: #f8fafc; --text-muted: #94a3b8;
    --border: 1px solid rgba(255, 255, 255, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; outline: none; }
body { background-color: var(--bg-main); color: var(--text-light); min-height: 100vh; overflow-x: hidden; }

/* 3D Spin */
.spin-3d { animation: float-spin 6s infinite ease-in-out; transform-style: preserve-3d; filter: drop-shadow(0 0 15px var(--primary)); font-size: 50px; color: var(--primary); display: inline-block; }
@keyframes float-spin { 0% { transform: translateY(0) rotateY(0deg); } 50% { transform: translateY(-10px) rotateY(180deg); } 100% { transform: translateY(0) rotateY(360deg); } }
.gold-text { background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c); -webkit-background-clip: text; background-clip: text; color: transparent; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; text-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }

/* Layout */
.wrapper { display: flex; height: 100vh; }
.sidebar { width: 280px; background: var(--bg-card); border-right: var(--border); padding: 25px; display: flex; flex-direction: column; position: fixed; height: 100%; z-index: 50; overflow-y: auto; }
.main-content { margin-left: 280px; width: calc(100% - 280px); padding: 30px; overflow-y: auto; height: 100vh; background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.05), transparent 40%); }

/* Components */
.card { background: var(--bg-card); border: var(--border); border-radius: 20px; padding: 25px; margin-bottom: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
input, select, textarea { width: 100%; background: var(--bg-input); border: 1px solid #334155; padding: 12px; border-radius: 10px; color: white; transition: 0.3s; margin-bottom: 10px; font-size: 15px; }
input:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); }
.btn { padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-size: 15px; color: black; }
.btn-primary { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); }
.btn-primary:hover { transform: scale(1.05); }
.btn-danger { background: #ef4444; color: white; }
.btn-outline { background: transparent; border: 1px solid #334155; color: var(--text-muted); }
.btn-outline:hover { color: var(--primary); border-color: var(--primary); }

/* Table */
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th { text-align: left; padding: 15px; color: var(--text-muted); border-bottom: var(--border); }
td { padding: 15px; border-bottom: var(--border); }

/* Menu */
.menu-link { padding: 14px; border-radius: 12px; color: var(--text-muted); text-decoration: none; display: flex; gap: 12px; transition: 0.3s; align-items: center; margin-bottom: 5px; }
.menu-link:hover, .menu-link.active { background: rgba(245, 158, 11, 0.1); color: var(--primary); }
.landing-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 15px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.landing-btn:hover { background: var(--primary); color: black; transform: translateY(-3px); box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }

/* Modals & Pricing */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); z-index: 1000; display: none; justify-content: center; align-items: center; opacity: 0; transition: 0.5s; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content { background: var(--bg-card); border: 1px solid var(--primary); padding: 40px; border-radius: 20px; width: 90%; max-width: 900px; max-height: 90vh; overflow-y: auto; box-shadow: 0 0 20px rgba(245,158,11,0.2); position: relative; transform: scale(0.8); transition: 0.5s; }
.modal-overlay.active .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 20px; right: 20px; font-size: 30px; color: var(--text-muted); cursor: pointer; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
.price-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 30px; text-align: center; transition: 0.3s; }
.price-card:hover { transform: translateY(-10px); border-color: var(--primary); }

/* Chat */
.chat-box { height: 350px; overflow-y: auto; background: rgba(0,0,0,0.3); padding: 15px; border-radius: 10px; }
.message { padding: 10px; margin-bottom: 10px; border-radius: 10px; max-width: 80%; }
.message.me { background: var(--primary); color: black; margin-left: auto; }
.message.other { background: var(--bg-input); border: 1px solid #334155; }

@media (max-width: 768px) { .sidebar { display: none; } .main-content { margin-left: 0; width: 100%; } }
@media print { .no-print { display: none !important; } }