/* =========================================================
   MBE TEAM UNITED — public site stylesheet
   Dark grunge / sunburst nightlife theme
   ========================================================= */
:root{
  --bg: #0a0a0a;
  --bg-alt: #0d0d0d;
  --card: #141414;
  --card-2: #17171a;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.16);
  --orange: #ff7a1a;
  --orange-dim: rgba(255,122,26,0.14);
  --orange-border: rgba(255,122,26,0.35);
  --green: #34d38a;
  --white: #ffffff;
  --gray: rgba(255,255,255,0.62);
  --gray-dim: rgba(255,255,255,0.42);
  --maxw: 1280px;
  --radius: 14px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  background:var(--bg);
  color:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}
section{position:relative;}
.mono{ font-family:'JetBrains Mono', monospace; }

h1,h2,h3,h4{
  font-family:'Anton', sans-serif; font-weight:400; text-transform:uppercase;
  letter-spacing:0.5px; line-height:1.05;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:30px; font-weight:700; font-size:14px;
  cursor:pointer; border:1.5px solid transparent; transition:all .15s ease; white-space:nowrap;
  font-family:'Inter',sans-serif;
}
.btn-orange{ background:var(--orange); color:#1a0d02; }
.btn-orange:hover{ background:#ff8f3d; }
.btn-outline{ border-color:var(--border-strong); color:var(--white); background:rgba(255,255,255,0.03); }
.btn-outline:hover{ border-color:var(--orange); color:var(--orange); }
.btn-dark{ background:var(--card-2); border-color:var(--border); color:var(--white); }
.btn-dark:hover{ border-color:var(--border-strong); }
.btn-sm{ padding:9px 18px; font-size:12.5px; }
.btn-block{ width:100%; }

/* ---------- Pills / badges ---------- */
.pill{
  display:inline-flex; align-items:center; gap:8px; padding:7px 16px; border-radius:30px;
  font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:1px; text-transform:uppercase;
  border:1px solid var(--border-strong); color:var(--orange); font-weight:600;
}
.pill.center{ margin:0 auto; }
.pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 8px var(--green); }
.badge{
  display:inline-flex; align-items:center; gap:6px; padding:5px 12px; border-radius:20px;
  font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.6px; text-transform:uppercase; font-weight:700;
}
.badge-dark{ background:rgba(0,0,0,0.55); color:var(--white); backdrop-filter:blur(4px); }
.badge-orange{ background:rgba(255,122,26,0.9); color:#1a0d02; }
.badge-green{ background:rgba(52,211,138,0.12); color:var(--green); border:1px solid rgba(52,211,138,0.3); }

/* ---------- Header ---------- */
header{ position:sticky; top:0; z-index:1000; background:rgba(10,10,10,0.9); backdrop-filter:blur(10px); border-bottom:1px solid var(--border); }
.nav-inner{ max-width:var(--maxw); margin:0 auto; padding:18px 32px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo{
  font-family:'Anton', sans-serif; font-size:26px; letter-spacing:0.5px; color:var(--white);
  transform:skewX(-8deg) scaleY(1.05); display:inline-block; font-style:italic;
}
.logo span{ color:var(--orange); }
nav.main-nav{ display:flex; gap:34px; }
nav.main-nav a{ font-weight:600; font-size:15px; color:rgba(255,255,255,0.8); }
nav.main-nav a:hover, nav.main-nav a.active{ color:var(--white); }
.nav-right{ display:flex; align-items:center; gap:18px; }
.hamburger{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.hamburger span{ display:block; width:22px; height:2px; background:#fff; margin:5px 0; }

/* ---------- Sunburst hero background ---------- */
.sunburst-bg{ position:relative; overflow:hidden; }
.sunburst-bg::before{
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: repeating-conic-gradient(from 0deg at 50% 38%,
    rgba(255,122,26,0.16) 0deg 4deg, transparent 4deg 12deg);
  mask-image: radial-gradient(circle at 50% 38%, black 0%, black 35%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 38%, black 0%, black 35%, transparent 72%);
}
.sunburst-bg > .wrap{ position:relative; z-index:1; }

/* ---------- Hero ---------- */
.hero{ padding:110px 0 70px; text-align:center; background:radial-gradient(ellipse at 50% 0%, #150c05 0%, var(--bg) 60%); }
.hero h1{ font-size:clamp(42px,7vw,84px); margin:24px 0 22px; }
.hero h1 .accent{ color:var(--orange); }
.hero p.desc{ color:var(--gray); font-size:18px; max-width:640px; margin:0 auto 36px; }
.hero-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:56px; }
.hero-stats{ display:flex; justify-content:center; gap:64px; flex-wrap:wrap; }
.hero-stats .stat{ text-align:center; }
.hero-stats .num{ font-family:'Anton',sans-serif; font-size:36px; color:var(--orange); }
.hero-stats .label{ color:var(--gray); font-size:14px; margin-top:2px; }

/* ---------- Section heading patterns ---------- */
.section-head{ margin-bottom:50px; }
.section-head.center{ text-align:center; }
.section-title{ font-size:clamp(30px,4.4vw,52px); margin:16px 0 18px; }
.section-title .accent{ color:var(--orange); }
.section-lead{ color:var(--gray); font-size:16.5px; max-width:640px; }
.section-lead.center{ margin:0 auto; }
.section-head-row{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:50px; }

/* ---------- Events grid ---------- */
.events-section{ padding:90px 0 40px; }
.event-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.event-card{
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition:border-color .15s;
}
.event-card:hover{ border-color:var(--border-strong); }
.event-card .img{
  position:relative; height:210px; background-size:cover; background-position:center;
  background-color:#1c1c1c;
}
.event-card .img .badge-dark, .event-card .img .badge-orange{ position:absolute; top:14px; }
.event-card .img .badge-dark{ left:14px; }
.event-card .img .badge-orange{ right:14px; }
.event-body{ padding:22px; display:flex; flex-direction:column; flex:1; }
.event-meta{ display:flex; gap:16px; color:var(--gray-dim); font-size:13px; margin-bottom:12px; flex-wrap:wrap; }
.event-meta span{ display:inline-flex; align-items:center; gap:6px; }
.event-meta svg{ width:14px; height:14px; }
.event-card h3{ font-size:20px; margin-bottom:10px; letter-spacing:0.2px; }
.event-card p{ color:var(--gray); font-size:14.5px; flex:1; margin-bottom:16px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.event-actions{ display:flex; gap:10px; padding-top:16px; border-top:1px solid var(--border); flex-wrap:wrap; }

/* ---------- Feature cards (Connect & Chat) ---------- */
.features-section{ padding:110px 0; }
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.feature-card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; }
.feature-icon{ width:48px; height:48px; border-radius:12px; background:var(--orange-dim); color:var(--orange); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.feature-icon svg{ width:24px; height:24px; }
.feature-card .badge{ align-self:flex-start; margin-bottom:14px; order:-1; }
.feature-top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:18px; }
.feature-card h3{ font-size:22px; margin-bottom:6px; }
.feature-sub{ color:var(--orange); font-family:'JetBrains Mono',monospace; font-size:12.5px; margin-bottom:14px; }
.feature-card p.desc{ color:var(--gray); font-size:14.5px; margin-bottom:20px; }
.feature-preview{ background:var(--card-2); border:1px solid var(--border); border-radius:10px; padding:16px; margin-top:auto; margin-bottom:18px; font-size:13.5px; }
.feature-card .explore{ color:var(--orange); font-weight:700; font-size:14px; }

/* ---------- Live activity panel ---------- */
.activity-section{ padding:60px 0 110px; }
.activity-panel{ background:var(--card); border:1px solid var(--border); border-radius:20px; padding:56px; display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.activity-panel h2{ font-size:clamp(28px,4vw,42px); margin:16px 0 18px; }
.activity-panel p{ color:var(--gray); margin-bottom:24px; }
.activity-stats{ display:flex; gap:40px; margin-bottom:26px; }
.activity-stats .num{ font-family:'Anton',sans-serif; font-size:30px; color:var(--orange); }
.activity-stats .label{ color:var(--gray); font-size:13.5px; }
.radar-box{ background:var(--card-2); border:1px solid var(--border); border-radius:14px; padding:22px; }
.radar-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.radar-head .title{ display:flex; align-items:center; gap:10px; font-weight:700; font-family:'JetBrains Mono',monospace; font-size:13px; letter-spacing:0.5px; text-transform:uppercase; }
.chat-msg{ padding:14px 0; border-top:1px solid var(--border); }
.chat-msg:first-child{ border-top:none; }
.chat-msg-head{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.chat-avatar{ width:30px; height:30px; border-radius:50%; background:var(--card); background-size:cover; background-position:center; flex-shrink:0; border:1px solid var(--border); }
.chat-msg .who{ font-weight:700; font-size:13.5px; }
.chat-msg .where{ color:var(--orange); font-size:13px; }
.chat-msg .when{ margin-left:auto; color:var(--gray-dim); font-size:12px; }
.chat-msg .body{ font-size:14px; color:rgba(255,255,255,0.85); padding-left:40px; }
.radar-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:18px; padding-top:16px; border-top:1px solid var(--border); flex-wrap:wrap; gap:12px; }
.radar-foot .privacy{ display:flex; align-items:center; gap:8px; color:var(--gray-dim); font-size:12.5px; }
.radar-foot .actions{ display:flex; gap:10px; }

/* ---------- Stat cards (Community in Motion) ---------- */
.stats-section{ padding:100px 0; background:var(--bg-alt); }
.stat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.stat-card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:28px; }
.stat-card-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.stat-card-top .tag{ font-family:'JetBrains Mono',monospace; font-size:11.5px; color:var(--gray); background:var(--card-2); padding:5px 12px; border-radius:16px; }
.stat-card-top svg{ width:20px; height:20px; color:var(--orange); }
.stat-card .big{ font-family:'Anton',sans-serif; font-size:44px; margin-bottom:10px; }
.stat-card h4{ font-family:'Inter',sans-serif; font-weight:700; text-transform:none; font-size:17px; margin-bottom:10px; letter-spacing:0; }
.stat-card p{ color:var(--gray); font-size:14px; margin-bottom:18px; }
.stat-card-foot{ display:flex; justify-content:space-between; align-items:center; padding-top:14px; border-top:1px solid var(--border); font-size:13px; color:var(--gray-dim); }
.live-tag{ display:inline-flex; align-items:center; gap:5px; color:var(--green); font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:700; }

/* ---------- CTA banner ---------- */
.cta-banner-wrap{ padding:0 0 100px; }
.cta-banner{
  background:var(--card); border:1px solid var(--border); border-radius:18px; padding:36px 40px;
  display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
}
.cta-banner h3{ font-family:'Inter',sans-serif; text-transform:none; font-size:22px; letter-spacing:0; margin-bottom:6px; }
.cta-banner p{ color:var(--gray); font-size:14.5px; }
.cta-banner .actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Community stories ---------- */
.stories-section{ padding:100px 0; }
.stories-stats{ display:flex; justify-content:center; gap:60px; flex-wrap:wrap; margin:36px 0 50px; }
.stories-stats .stat{ text-align:center; }
.stories-stats .num{ font-family:'Anton',sans-serif; font-size:32px; }
.stories-stats .label{ color:var(--gray); font-size:13.5px; }
.filter-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom:34px; flex-wrap:wrap; gap:14px; }
.filter-tabs{ display:flex; gap:10px; }
.filter-tabs button{
  font-family:'Inter',sans-serif; font-weight:700; font-size:13.5px; padding:9px 18px; border-radius:22px;
  border:1px solid var(--border-strong); background:var(--card-2); color:var(--white); cursor:pointer;
  display:flex; align-items:center; gap:8px;
}
.filter-tabs button.active{ background:var(--orange); color:#1a0d02; border-color:var(--orange); }
.filter-count{ color:var(--gray-dim); font-size:13.5px; }
.story-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.story-card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:24px; }
.story-top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:16px; }
.story-person{ display:flex; gap:12px; align-items:center; }
.story-avatar{ width:44px; height:44px; border-radius:50%; background-size:cover; background-position:center; background-color:var(--card-2); position:relative; flex-shrink:0; }
.story-avatar .online-dot{ position:absolute; bottom:0; right:0; width:11px; height:11px; border-radius:50%; background:var(--green); border:2px solid var(--card); }
.story-name{ font-weight:700; font-size:15.5px; display:flex; align-items:center; gap:6px; }
.story-loc{ color:var(--gray-dim); font-size:12.5px; display:flex; align-items:center; gap:5px; margin-top:2px; }
.story-rating{ display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; font-size:13px; color:var(--gray); }
.stars{ color:var(--orange); letter-spacing:2px; }
.story-quote-icon{ color:var(--orange-border); font-size:28px; font-family:Georgia, serif; line-height:0.5; margin-bottom:8px; }
.story-quote{ font-style:italic; color:rgba(255,255,255,0.85); font-size:14.5px; margin-bottom:18px; }
.story-foot{ border-top:1px solid var(--border); padding-top:14px; font-size:12.5px; color:var(--gray-dim); }
.story-foot .connected{ color:var(--orange); margin-bottom:4px; display:flex; align-items:center; gap:6px; }

/* ---------- Profile CTA / tagging strip ---------- */
.tag-cta-section{ padding:100px 0; text-align:center; }
.tag-cta-section .checklist{ display:flex; justify-content:center; gap:28px; flex-wrap:wrap; margin:26px 0 34px; color:var(--gray); font-size:14.5px; }
.tag-cta-section .checklist span{ display:inline-flex; align-items:center; gap:8px; }
.tag-cta-section .checklist svg{ width:17px; height:17px; color:var(--orange); }
.tag-inline-form{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.tag-inline-form input{
  background:var(--card); border:1px solid var(--border-strong); border-radius:30px; padding:14px 20px;
  color:var(--white); font-size:14.5px; min-width:280px;
}

.mini-promo{ max-width:420px; margin:50px auto 0; background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:34px; text-align:center; }
.mini-promo .icon-circle{ width:46px; height:46px; border-radius:50%; background:var(--orange-dim); color:var(--orange); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.mini-promo h3{ font-size:22px; margin-bottom:10px; }
.mini-promo p{ color:var(--gray); font-size:14px; }

/* ---------- Auth card (register/login) ---------- */
.auth-section{ padding:90px 0 120px; }
.auth-card{ max-width:440px; margin:0 auto; background:var(--card); border:1px solid var(--border); border-radius:20px; padding:40px; text-align:center; }
.auth-card .icon-circle{ width:52px; height:52px; border-radius:50%; background:var(--orange-dim); color:var(--orange); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.auth-card h1{ font-size:28px; margin-bottom:10px; }
.auth-card > p{ color:var(--gray); font-size:14.5px; margin-bottom:28px; }
.auth-tabs{ display:flex; background:var(--card-2); border-radius:30px; padding:4px; margin-bottom:26px; }
.auth-tabs a{ flex:1; text-align:center; padding:11px; border-radius:26px; font-weight:700; font-size:13.5px; color:var(--gray); }
.auth-tabs a.active{ background:var(--white); color:#0a0a0a; }
.auth-form{ text-align:left; display:flex; flex-direction:column; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:11.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray); }
.input-icon{ position:relative; }
.input-icon svg{ position:absolute; left:16px; top:50%; transform:translateY(-50%); width:17px; height:17px; color:var(--gray-dim); }
.input-icon input, .input-icon select{ padding-left:44px; }
.field input, .field select, .field textarea{
  background:var(--bg-alt); border:1px solid var(--border-strong); border-radius:10px; padding:13px 16px;
  color:var(--white); font-size:14.5px; font-family:inherit; width:100%;
}
.field input::placeholder, .field textarea::placeholder{ color:var(--gray-dim); }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--orange); }
.password-toggle{ position:absolute; right:14px; top:50%; transform:translateY(-50%); background:none; border:none; color:var(--gray-dim); cursor:pointer; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--gray); }
.checkbox-row input{ width:auto; margin-top:3px; }
.interest-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.interest-tags label{
  border:1px solid var(--border-strong); border-radius:20px; padding:8px 16px; font-size:13px; cursor:pointer;
  display:flex; align-items:center; gap:6px; color:var(--gray); text-transform:none; font-weight:600;
}
.interest-tags input{ width:auto; accent-color:var(--orange); }
.interest-tags input:checked + span{ color:var(--orange); }

.alert{ padding:13px 16px; border-radius:10px; font-size:14px; margin-bottom:20px; font-weight:600; text-align:left; }
.alert.success{ background:rgba(52,211,138,0.1); color:var(--green); border:1px solid rgba(52,211,138,0.25); }
.alert.error{ background:rgba(255,90,60,0.1); color:#ff8a70; border:1px solid rgba(255,90,60,0.3); }

/* ---------- Generic page hero (events/detail/profile) ---------- */
.page-hero{ padding:70px 0 50px; text-align:left; }
.page-hero .breadcrumb{ font-size:13px; color:var(--gray-dim); margin-bottom:16px; }
.page-hero .breadcrumb a{ color:var(--orange); }
.page-hero h1{ font-size:clamp(30px,4.5vw,48px); margin:14px 0; }
.page-hero p{ color:var(--gray); max-width:600px; }

/* ---------- Filter tabs (events listing) ---------- */
.category-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; }
.category-tabs a{
  padding:10px 20px; border-radius:24px; border:1px solid var(--border-strong); font-weight:700; font-size:13px;
  color:var(--gray); font-family:'JetBrains Mono',monospace; letter-spacing:0.5px; text-transform:uppercase;
}
.category-tabs a.active{ background:var(--orange); border-color:var(--orange); color:#1a0d02; }
.category-tabs a:hover:not(.active){ border-color:var(--orange); color:var(--orange); }

/* ---------- Event detail ---------- */
.event-detail{ padding:0 0 100px; }
.event-detail .wrap{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:50px; align-items:start; }
.event-detail .hero-img{ height:400px; border-radius:var(--radius); background-size:cover; background-position:center; background-color:var(--card); margin-bottom:26px; }
.event-detail .description{ color:var(--gray); font-size:15.5px; white-space:pre-line; margin-bottom:30px; }
.detail-sidebar{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:28px; position:sticky; top:100px; }
.detail-sidebar .meta-row{ display:flex; align-items:center; gap:12px; padding:14px 0; border-bottom:1px solid var(--border); font-size:14.5px; }
.detail-sidebar .meta-row:last-of-type{ border-bottom:none; }
.detail-sidebar svg{ width:18px; height:18px; color:var(--orange); flex-shrink:0; }
.attendee-stack{ display:flex; align-items:center; gap:10px; margin:18px 0; }
.avatar-stack{ display:flex; }
.avatar-stack .chat-avatar{ margin-left:-10px; border:2px solid var(--card); }
.avatar-stack .chat-avatar:first-child{ margin-left:0; }

/* ---------- Wall / feed ---------- */
.wall-section{ padding:0 0 100px; }
.wall-composer{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:22px; margin-bottom:30px; }
.wall-composer textarea{ width:100%; background:var(--bg-alt); border:1px solid var(--border-strong); border-radius:10px; padding:14px; color:var(--white); font-family:inherit; font-size:14.5px; min-height:80px; resize:vertical; }
.wall-composer .composer-foot{ display:flex; justify-content:flex-end; margin-top:12px; }
.wall-post{ background:var(--card); border:1px solid var(--border); border-radius:14px; padding:20px; margin-bottom:16px; }
.wall-post-head{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.wall-post .who{ font-weight:700; }
.wall-post .when{ margin-left:auto; color:var(--gray-dim); font-size:12.5px; }
.wall-post .body{ color:rgba(255,255,255,0.88); font-size:15px; padding-left:52px; }
.wall-post .event-tag{ color:var(--orange); font-size:12.5px; padding-left:52px; margin-top:6px; display:block; }

/* ---------- Rooms ---------- */
.rooms-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; margin-bottom:40px; }
.room-card{ background:var(--card); border:1px solid var(--border); border-radius:14px; padding:22px; }
.room-card h3{ font-family:'Inter',sans-serif; text-transform:none; font-size:17px; letter-spacing:0; margin-bottom:8px; }
.room-card p{ color:var(--gray-dim); font-size:13px; margin-bottom:16px; }
.room-chat{ display:grid; grid-template-columns:1fr 280px; gap:26px; align-items:start; }
.room-messages{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:22px; height:520px; overflow-y:auto; display:flex; flex-direction:column; gap:14px; }
.member-list{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:22px; }
.member-list li{ display:flex; align-items:center; gap:10px; padding:8px 0; font-size:14px; }

/* ---------- Footer ---------- */
footer{ background:var(--bg-alt); border-top:1px solid var(--border); padding:60px 0 0; margin-top:60px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px; padding-bottom:36px; border-bottom:1px solid var(--border); }
.footer-top p{ color:var(--gray); max-width:420px; margin-top:14px; font-size:14.5px; }
.footer-live{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.footer-nav{ display:flex; justify-content:space-between; align-items:center; padding:28px 0; flex-wrap:wrap; gap:20px; }
.footer-nav .links{ display:flex; gap:26px; flex-wrap:wrap; }
.footer-nav .links a{ color:var(--gray); font-weight:600; font-size:14.5px; }
.footer-nav .links a:hover{ color:var(--white); }
.social-row{ display:flex; align-items:center; gap:14px; }
.social-row .label{ font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--gray-dim); letter-spacing:1px; }
.social-row a{ width:36px; height:36px; border:1px solid var(--border-strong); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ border-color:var(--orange); color:var(--orange); }
.social-row svg{ width:15px; height:15px; }
.footer-bottom{ border-top:1px solid var(--border); padding:22px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--gray-dim); }
.footer-bottom .legal{ display:flex; gap:20px; flex-wrap:wrap; }

/* ---------- Mobile nav ---------- */
.mobile-nav{ display:none; flex-direction:column; background:var(--bg-alt); padding:18px 32px 26px; border-top:1px solid var(--border); }
.mobile-nav.open{ display:flex; }
.mobile-nav a{ padding:12px 0; font-weight:700; border-bottom:1px solid var(--border); }
.mobile-nav .btn{ margin-top:14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  nav.main-nav{ display:none; }
  .hamburger{ display:block; }
  .nav-right .btn{ display:none; }
  .event-grid, .feature-grid, .stat-grid, .story-grid{ grid-template-columns:1fr 1fr; }
  .activity-panel{ grid-template-columns:1fr; }
  .event-detail .wrap, .room-chat{ grid-template-columns:1fr; }
}
@media (max-width: 700px){
  .wrap{ padding:0 20px; }
  .event-grid, .feature-grid, .stat-grid, .story-grid{ grid-template-columns:1fr; }
  .hero-stats{ gap:36px; }
  .section-head-row{ align-items:flex-start; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
}
