/* Landing */
.landing-hero {
  text-align:center; padding: clamp(60px, 8vw, 120px) 24px clamp(40px, 5vw, 80px);
  max-width: 800px; margin: 0 auto;
}
.landing-hero h1 { margin-bottom: 20px; }
.landing-hero p { color:var(--text-secondary); font-size: clamp(16px, 2vw, 20px); margin-bottom: 40px; max-width: 600px; margin-left:auto; margin-right:auto; }
.hero-caps { display:flex; justify-content:center; gap: clamp(20px, 4vw, 40px); margin: 60px 0; perspective:1000px; }
.hero-cap {
  width: clamp(80px, 10vw, 120px); height: clamp(80px, 10vw, 120px); border-radius:50%;
  background: conic-gradient(from 0deg, #d4af37, #fff, #aaa, #fff, #d4af37);
  border: 4px dashed var(--accent); display:flex; align-items:center; justify-content:center;
  font-size: clamp(28px, 4vw, 48px); box-shadow:0 10px 30px rgba(0,0,0,0.3);
}
.hero-cap:nth-child(1) { animation: float 4s ease-in-out infinite; }
.hero-cap:nth-child(2) { animation: float 4s ease-in-out infinite 0.5s; transform:translateY(-10px); }
.hero-cap:nth-child(3) { animation: float 4s ease-in-out infinite 1s; }

.steps { display:grid; gap:20px; max-width: 900px; margin: 0 auto 60px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card { display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px; padding:32px 24px; }
.step-num { width:48px; height:48px; border-radius:50%; background:var(--primary); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:20px; flex-shrink:0; }

.gk-economy { display:grid; gap:16px; max-width: 1000px; margin: 0 auto 80px; }
@media (min-width: 768px) { .gk-economy { grid-template-columns: repeat(4, 1fr); } }
.gk-economy .card { text-align:center; padding: 28px 20px; }
.gk-economy .card .price { font-size:32px; font-weight:800; color:var(--accent); margin:12px 0; }

/* Auth */
.auth-page { display:flex; min-height:100vh; }
@media (min-width: 1024px) {
  .auth-page { display:grid; grid-template-columns: 1fr 1fr; }
  .auth-visual {
    background: linear-gradient(135deg, var(--secondary), var(--bg));
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    padding:40px; position:relative; overflow:hidden;
  }
  .auth-visual::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(circle at 50% 50%, rgba(255,107,53,0.15), transparent 70%);
  }
  .auth-visual .hero-caps { margin:0; }
  .auth-visual h2 { font-size:36px; margin-top:32px; text-align:center; }
  .auth-visual p { color:var(--text-secondary); text-align:center; margin-top:12px; }
}
.auth-form-panel { display:flex; flex-direction:column; justify-content:center; padding: 40px 24px; max-width: 440px; margin: 0 auto; width:100%; }
.auth-logo { display:flex; flex-direction:column; align-items:center; padding: 40px 0 20px; }
.auth-logo .gk-cap { width:100px; height:100px; font-size:36px; margin-bottom:12px; }
.auth-tabs { display:flex; gap:8px; margin-bottom:32px; border-bottom:1px solid var(--border); }
.auth-tab { flex:1; padding:14px; text-align:center; cursor:pointer; color:var(--text-secondary); font-weight:500; border-bottom:2px solid transparent; margin-bottom:-1px; }
.auth-tab.active { color:var(--primary); border-bottom-color:var(--primary); font-weight:600; }
.auth-form { display:none; }
.auth-form.active { display:block; animation: fadeIn 0.3s; }

/* Onboarding */
.onboarding-progress { max-width: 600px; margin: 0 auto; padding: 24px; }
.photo-upload { width:160px; height:160px; border-radius:50%; border:3px dashed var(--border); margin:0 auto; display:flex; align-items:center; justify-content:center; cursor:pointer; background:var(--surface); position:relative; overflow:hidden; }
.photo-upload img { width:100%; height:100%; object-fit:cover; display:none; }
.photo-upload.has-img img { display:block; }
.photo-upload.has-img .upload-placeholder { display:none; }
.chip-grid { display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.chip { padding:8px 16px; border-radius:20px; background:var(--surface-elevated); border:1px solid var(--border); font-size:14px; cursor:pointer; user-select:none; transition:0.2s; }
.chip.selected { background:rgba(255,107,53,0.15); border-color:var(--primary); color:var(--primary); }

/* Discover / Swipe */
.discover-layout {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nav-height, 64px));
  padding-bottom: 100px;
}
@media (min-width: 1024px) {
  .discover-layout { max-width: 480px; }
}
.discover-header { display:flex; align-items:center; justify-content:space-between; padding:12px 0; flex-shrink:0; }
.card-stack {
  position:relative;
  flex:1;
  min-height:300px;
  max-height: calc(100vh - var(--nav-height, 64px) - 180px);
  margin:0 auto;
  width:100%;
  max-width: 440px;
}
@media (max-width: 767px) {
  .card-stack { max-height: calc(100vh - var(--nav-height, 64px) - 70px - 100px); }
}
.swipe-card {
  position:absolute; inset:0; border-radius:var(--radius-lg); overflow:hidden;
  background:var(--surface); border:1px solid var(--border); box-shadow:var(--shadow);
  touch-action:none; user-select:none;
}
.swipe-card .card-img { width:100%; height:100%; object-fit:cover; display:block; }
.swipe-card .card-info { padding:20px; }
.swipe-card .card-name { font-size:22px; font-weight:700; }
.swipe-card .card-meta { color:var(--text-secondary); font-size:14px; margin-top:4px; }
.swipe-card .card-chips { display:flex; gap:6px; margin-top:10px; flex-wrap:wrap; }
.swipe-card .card-chips span { font-size:12px; padding:4px 10px; border-radius:12px; background:var(--surface-elevated); }
.price-badge { display:inline-block; font-size:13px; font-weight:600; padding:4px 12px; border-radius:20px; background:linear-gradient(135deg, #ff6b35, #ff8f65); color:#fff; margin:6px 0; }

.swipe-actions {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 500px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:12px 24px;
  background: linear-gradient(to top, var(--bg) 70%, transparent 100%);
  z-index: 100;
}
@media (max-width: 767px) {
  .swipe-actions { bottom: 70px; }
}
.swipe-btn { width:64px; height:64px; border-radius:50%; border:none; font-size:28px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:0.2s; background:var(--surface-elevated); border:1px solid var(--border); }
.swipe-btn:active { transform:scale(0.9); }
.swipe-btn--pass { color:var(--danger); }
.swipe-btn--like { color:var(--success); }
.swipe-btn--super { width:72px; height:72px; background:linear-gradient(135deg, var(--primary), var(--primary-light)); color:#fff; font-size:32px; border:none; box-shadow:0 4px 15px rgba(255,107,53,0.3); }

.match-modal .modal { text-align:center; padding:48px 32px; }
.match-modal .hearts { font-size:60px; margin-bottom:16px; animation: pulse 1s infinite; }

/* Chat List */
.chat-list { width: 100%; margin: 0 auto; }
.chat-list .mt-4 { width:100%; }
.chat-item { display:flex; align-items:center; gap:16px; padding:16px 20px; border-bottom:1px solid var(--border); cursor:pointer; transition:0.2s; border-radius:var(--radius); }
.chat-item:hover { background:var(--surface-elevated); }
.chat-avatar { width:56px; height:56px; border-radius:50%; object-fit:cover; background:var(--surface-elevated); flex-shrink:0; border:2px solid var(--border); }
.chat-avatar-wrapper { flex-shrink:0; width:56px; height:56px; }
.chat-avatar-placeholder { width:56px; height:56px; border-radius:50%; background:var(--primary); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:700; color:#fff; }
.chat-info { flex:1; min-width:0; }
.chat-name { font-weight:600; font-size:16px; }
.chat-preview { color:var(--text-secondary); font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:2px; }
.chat-meta { text-align:right; flex-shrink:0; }
.chat-time { font-size:12px; color:var(--text-secondary); }
.chat-cost { font-size:12px; color:var(--accent); margin-top:4px; font-weight:600; }

/* WhatsApp-style Chat */
.chat-whatsapp {
  max-width: 700px; margin: 0 auto;
  display:flex; flex-direction:column;
  height: calc(100vh - var(--nav-height, 0px));
  background: #0b141a;
  color: #e9edef;
}
.chat-whatsapp-header {
  display:flex; align-items:center; gap:10px;
  padding: 10px 16px;
  background: #1f2c33;
  flex-shrink:0;
}
.chat-whatsapp-user { display:flex; align-items:center; gap:10px; flex:1; }
.chat-whatsapp-avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.chat-whatsapp-avatar-placeholder {
  width:40px; height:40px; border-radius:50%;
  background: var(--primary); display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:700; color:#fff; flex-shrink:0;
}
.chat-whatsapp-name { font-weight:600; font-size:16px; }
.chat-whatsapp-status { font-size:12px; color:#8696a0; }
.chat-whatsapp-body {
  flex:1; overflow-y:auto; padding: 12px 16px;
  display:flex; flex-direction:column; gap:4px;
  background: #0b141a;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" opacity="0.03"><rect width="400" height="400" fill="none"/><circle cx="50" cy="50" r="40" fill="white"/><circle cx="200" cy="150" r="60" fill="white"/><circle cx="350" cy="50" r="30" fill="white"/><circle cx="100" cy="300" r="50" fill="white"/><circle cx="300" cy="350" r="45" fill="white"/></svg>');
}
.chat-whatsapp-body::-webkit-scrollbar { width:6px; }
.chat-whatsapp-body::-webkit-scrollbar-thumb { background:#374045; border-radius:3px; }
.chat-whatsapp-msg { display:flex; margin-bottom:2px; }
.chat-whatsapp-msg.outgoing { justify-content:flex-end; }
.chat-whatsapp-msg.incoming { justify-content:flex-start; }
.chat-bubble {
  max-width:75%; padding:6px 9px 8px; border-radius:8px;
  font-size:14.2px; line-height:1.4; position:relative; word-break:break-word;
}
.chat-bubble.incoming {
  background: #1f2c33; color:#e9edef;
  border-top-left-radius:2px;
}
.chat-bubble.outgoing {
  background: #005c4b; color:#e9edef;
  border-top-right-radius:2px;
}
.chat-bubble.locked { background:#182229; border:1px dashed #3b4a54; }
.chat-bubble-text { white-space:pre-wrap; }
.chat-bubble-time {
  font-size:11px; color:rgba(233,237,239,0.5);
  float:right; margin-top:4px; margin-left:8px;
}
.chat-whatsapp-msg.outgoing .chat-bubble-time { color:rgba(233,237,239,0.6); }
.chat-whatsapp-delayed {
  text-align:center; padding:8px; font-size:12px; color:#8696a0;
}
.chat-whatsapp-input {
  display:flex; align-items:center; gap:8px;
  padding: 8px 12px; background: #1f2c33; flex-shrink:0;
}
.chat-input {
  flex:1; padding:10px 14px; border-radius:8px; border:none;
  background: #2a3942; color:#e9edef; font-size:15px; outline:none;
}
.chat-input::placeholder { color:#8696a0; }
.btn-send {
  padding:8px 18px; border-radius:8px; border:none;
  background: #005c4b; color:#e9edef; font-weight:600; cursor:pointer;
  transition:0.2s; font-size:14px;
}
.btn-send:hover { background: #075e54; }
.btn-icon {
  background:none; border:none; color:#aebac1; cursor:pointer;
  font-size:22px; padding:4px 8px; border-radius:50%; display:flex;
  align-items:center; justify-content:center; transition:0.2s; line-height:1;
}
.btn-icon:hover { background:rgba(255,255,255,0.1); color:#e9edef; }
.btn-timecapsule {
  background:none; border:none; color:#8696a0; cursor:pointer;
  font-size:20px; padding:6px; border-radius:50%; display:flex;
  align-items:center; justify-content:center; transition:0.2s; line-height:1; flex-shrink:0;
}
.btn-timecapsule:hover { background:rgba(255,255,255,0.08); color:#e9edef; }
.tc-popup {
  position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:200;
  display:flex; align-items:center; justify-content:center; padding:20px;
}
.tc-popup-inner {
  background:#1f2c33; border-radius:16px; padding:24px; width:100%; max-width:360px;
  display:flex; flex-direction:column; gap:12px; animation:pop 0.2s ease;
}
.tc-popup-title { font-size:18px; font-weight:700; color:#e9edef; text-align:center; }
.tc-popup-desc { font-size:14px; color:#8696a0; text-align:center; }
.tc-presets { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.tc-preset {
  padding:8px 16px; border-radius:20px; border:1px solid #3b4a54;
  background:transparent; color:#e9edef; font-size:13px; cursor:pointer; transition:0.2s;
}
.tc-preset:hover { background:#2a3942; border-color:#00a884; }
.tc-input {
  flex:1; padding:10px 14px; border-radius:8px; border:none;
  background:#2a3942; color:#e9edef; font-size:14px; outline:none;
}
.tc-cancel {
  background:none; border:none; color:#8696a0; font-size:13px;
  cursor:pointer; text-align:center; padding:8px;
}
.tc-cancel:hover { color:#e9edef; }
.btn-unlock {
  background:none; border:none; color:#00a884; cursor:pointer;
  text-decoration:underline; font-size:14px; padding:4px;
}
.btn-unlock:hover { color:#00d4a0; }

/* Wallet */
.wallet-hero { text-align:center; padding: 40px 24px; max-width: 500px; margin: 0 auto; }
.wallet-hero .big-cap { width:140px; height:140px; border-radius:50%; margin:0 auto 20px;
  background: conic-gradient(from 0deg, #d4af37, #fff, #aaa, #fff, #d4af37);
  border: 6px dashed var(--accent); display:flex; align-items:center; justify-content:center;
  font-size:48px; font-weight:900; color:var(--secondary); box-shadow:0 10px 40px rgba(255,209,102,0.2);
  animation: float 4s ease-in-out infinite;
}
.wallet-balance { font-size: clamp(36px, 5vw, 56px); font-weight:900; color:var(--accent); }
.wallet-stats { display:flex; justify-content:center; gap:32px; margin-top:16px; color:var(--text-secondary); font-size:14px; }

.wallet-tabs { display:flex; gap:8px; max-width: 600px; margin: 0 auto 24px; }
.wallet-tab { flex:1; padding:12px; text-align:center; border-radius:var(--radius); background:var(--surface); color:var(--text-secondary); font-size:14px; cursor:pointer; border:1px solid var(--border); }
.wallet-tab.active { background:var(--primary); color:#fff; border-color:var(--primary); }

.tx-list { max-width: 700px; margin: 0 auto; }
.tx-item { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--border); }
.tx-icon { width:44px; height:44px; border-radius:50%; background:var(--surface-elevated); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.tx-info { flex:1; }
.tx-title { font-weight:600; font-size:15px; }
.tx-date { font-size:12px; color:var(--text-secondary); margin-top:2px; }
.tx-amount { font-weight:700; font-size:16px; }
.tx-amount.positive { color:var(--success); }
.tx-amount.negative { color:var(--danger); }

.gaka-card { border: 1px solid rgba(0,168,132,0.3); background: linear-gradient(135deg, rgba(0,168,132,0.08), rgba(0,0,0,0.2)); }
.gaka-amount { color: #00a884; }
.gaka-stats { display:flex; gap:16px; margin-top:8px; font-size:13px; color:var(--text-secondary); flex-wrap:wrap; }
.gaka-info h4 { margin-bottom:8px; }
.gaka-serial-row { display:flex; align-items:center; gap:12px; padding:8px 0; border-bottom:1px solid var(--border-color); font-size:13px; }
.gaka-serial-row:last-child { border-bottom:none; }
.gaka-serial-range { font-family:monospace; color:#00a884; font-weight:600; }
.gaka-serial-count { color:var(--text-secondary); }
.gaka-serial-source { margin-left:auto; font-size:11px; color:var(--text-muted); }
.gaka-nft-card { background:linear-gradient(135deg,#1a2a1a,#0d1b0d); border:1px solid rgba(0,168,132,0.3); border-radius:12px; padding:12px; text-align:center; }
.gaka-nft-header { font-family:monospace; font-size:11px; color:#00a884; margin-bottom:4px; }
.gaka-nft-name { font-size:14px; font-weight:600; margin-bottom:4px; }
.gaka-nft-type { font-size:11px; color:var(--text-secondary); }

/* Community Detail Modern */
.community-detail-page { width:100%; }
.community-hero { overflow:hidden; padding:0; }
.community-banner { height:140px; border-radius:12px 12px 0 0; display:flex; align-items:flex-end; padding:20px; gap:16px; position:relative; }
.community-banner::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); border-radius:12px 12px 0 0; }
.community-icon { font-size:56px; line-height:1; z-index:1; }
.community-title-wrap { z-index:1; }
.community-title { font-size:24px; font-weight:800; color:#fff; margin:0; text-shadow:0 2px 4px rgba(0,0,0,0.3); }
.community-meta { font-size:14px; color:rgba(255,255,255,0.85); margin:4px 0 0; }
.community-hero-body { padding:20px; }
.community-description { font-size:15px; color:var(--text-secondary); line-height:1.6; margin:0 0 16px; }
.community-actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.invite-form { display:inline-flex; gap:8px; align-items:center; flex-wrap:wrap; }
.community-stats { padding:16px 0; }
.section-title { font-size:18px; font-weight:700; }
.topic-form { border:1px solid var(--border); }
.emoji-hint { font-size:12px; color:var(--text-secondary); display:block; margin-bottom:4px; }
.textarea-wrap { position:relative; }
.emoji-btn { position:absolute; bottom:8px; right:8px; font-size:18px; padding:2px 8px; line-height:1; background:transparent; border:none; cursor:pointer; }
.form-row { display:flex; gap:16px; flex-wrap:wrap; }
.gk-cost-hint { font-size:13px; color:var(--accent); margin-bottom:12px; }
.form-actions { display:flex; gap:8px; }
.community-topics { display:flex; flex-direction:column; gap:10px; }
.topic-card-link { text-decoration:none; color:inherit; }
.topic-card { display:flex; align-items:center; gap:14px; padding:14px 16px; transition:transform 0.15s, box-shadow 0.15s; }
.topic-card:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,0.18); }
.topic-icon { font-size:32px; flex-shrink:0; }
.topic-info { flex:1; min-width:0; }
.topic-title { font-weight:700; font-size:15px; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.topic-title .pinned { color:var(--accent); margin-right:4px; }
.topic-meta { font-size:13px; color:var(--text-secondary); margin:0; }
.topic-date { font-size:12px; color:var(--text-secondary); white-space:nowrap; }
.empty-community { padding:40px; text-align:center; color:var(--text-secondary); }

.collection-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; max-width: 600px; margin: 0 auto; }
@media (min-width: 768px) { .collection-grid { grid-template-columns: repeat(4, 1fr); } }
.cap-card { aspect-ratio:1; border-radius:var(--radius); background:var(--surface); border:2px solid var(--border); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; font-size:12px; position:relative; overflow:hidden; transition:0.2s; }
.cap-card:hover { transform:scale(1.05); }
.cap-card .cap-visual { width:50px; height:50px; border-radius:50%; background:conic-gradient(from 0deg, #c0c0c0, #fff, #999, #fff, #c0c0c0); border:2px dashed var(--accent); display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:900; color:var(--secondary); }
.cap-card.rare-gold { border-color:gold; }
.cap-card.rare-silver { border-color:#c0c0c0; }
.cap-card.rare-platinum { border-color:#e5e4e2; }

/* Missions */
.missions-grid { display:grid; gap:20px; max-width:100%; margin: 0 auto; }
@media (min-width: 768px) { .missions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .missions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .missions-grid { grid-template-columns: 1fr; } }
.mission-card { padding:20px; position:relative; overflow:hidden; transition:transform 0.2s, box-shadow 0.2s; }
.mission-card:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,0.3); }
.mission-card .mission-header { display:flex; justify-content:space-between; align-items:start; margin-bottom:10px; }
.mission-card-link { text-decoration:none; color:var(--text-primary); display:block; }
.mission-card-link:hover .mission-title { color:var(--accent); }
.mission-title { font-size:16px; font-weight:700; margin:0; color:var(--text-primary); transition:color 0.15s; }
.mission-desc { font-size:13px; line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.mission-meta { display:flex; justify-content:space-between; align-items:center; margin-top:10px; font-size:13px; }
.tag.rarity-standart { background:var(--bg-input); color:var(--text-secondary); }
.tag.rarity-gümüş { background:linear-gradient(135deg,#e8e8e8,#c0c0c0); color:#333; }
.tag.rarity-altın { background:linear-gradient(135deg,#ffd700,#ffb300); color:#333; }
.tag.rarity-platin { background:linear-gradient(135deg,#e5e4e2,#b9f2ff); color:#333; }
.tag.rarity-elmas { background:linear-gradient(135deg,#b9f2ff,#7dd3fc); color:#333; }
.my-mission-link { text-decoration:none; color:var(--text-primary); display:flex; align-items:center; justify-content:space-between; padding:16px; border-radius:12px; transition:background 0.15s; }
.my-mission-link:hover { background:var(--bg-hover); }
.my-mission-link:hover strong { color:var(--accent); }
.mission-card .mission-place { font-size:18px; font-weight:700; }
.mission-card .mission-task { color:var(--text-secondary); margin-bottom:16px; }

.receipt-upload {
  border: 2px dashed var(--border); border-radius: var(--radius); padding: 60px 20px;
  text-align:center; cursor:pointer; transition:0.2s; background: var(--surface); max-width: 600px; margin: 24px auto;
}
.receipt-upload:hover { border-color: var(--primary); }
.receipt-upload .upload-icon { font-size:48px; margin-bottom:12px; }

.ocr-scan { display:none; text-align:center; padding:40px; }
.ocr-scan.active { display:block; }
.scan-line { width:60%; height:2px; background:var(--primary); margin:20px auto; box-shadow:0 0 10px var(--primary); animation:scanMove 2s infinite linear; }
@keyframes scanMove { 0%,100%{opacity:0; transform:translateY(-20px);} 50%{opacity:1; transform:translateY(20px);} }

/* Matches */
.matches-grid { display:flex; flex-direction:column; gap:16px; width:100%; }
.match-card { display:flex; align-items:center; gap:16px; padding:16px 20px; cursor:default; width:100%; }
.match-photo { flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.match-avatar { width:72px; height:72px; border-radius:50%; object-fit:cover; }
.match-info { flex:1; min-width:0; }
.match-info h4 { margin:0 0 4px; }
.match-actions { display:flex; gap:8px; flex-shrink:0; }
.match-actions .btn { white-space:nowrap; }

/* Content Lock */
.lock-settings { max-width: 700px; margin: 0 auto; }
.lock-row { display:flex; align-items:center; justify-content:space-between; padding:16px 0; border-bottom:1px solid var(--border); gap:16px; }
.lock-row .lock-info { flex:1; }
.lock-row .lock-title { font-weight:600; }
.lock-row .lock-desc { font-size:13px; color:var(--text-secondary); margin-top:2px; }
.lock-controls { display:flex; align-items:center; gap:12px; }
.lock-price { width:60px; text-align:center; background:var(--surface-elevated); border:1px solid var(--border); border-radius:8px; padding:8px; color:var(--accent); font-weight:700; }

/* Unlock */
.unlock-page { max-width: 500px; margin: 0 auto; text-align:center; padding-top: 40px; }
.unlock-preview { position:relative; border-radius:var(--radius); overflow:hidden; margin-bottom:20px; }
.unlock-preview img { width:100%; display:block; filter:blur(12px) brightness(0.4); transition:0.6s; }
.unlock-preview.unlocked img { filter:none; }
.unlock-overlay { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; }
.unlock-overlay .unlock-cap { width:80px; height:80px; font-size:32px; }
.unlock-cost { font-size:18px; font-weight:700; color:var(--accent); }

/* Settings */
.settings-page { max-width: 700px; margin: 0 auto; }
.settings-group { margin-bottom:32px; }
.settings-group-title { font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-secondary); margin-bottom:8px; }
.settings-item { display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid var(--border); cursor:pointer; transition:0.2s; border-radius:var(--radius); }
.settings-item:hover { background:var(--surface-elevated); }
.settings-item .settings-label { font-size:16px; }
.settings-item .settings-value { color:var(--text-secondary); font-size:14px; }

/* Notifications */
.notifications-page { max-width: 700px; margin: 0 auto; }
.notif-item { display:flex; gap:14px; padding:16px 20px; border-bottom:1px solid var(--border); cursor:pointer; transition:0.2s; border-radius:var(--radius); }
.notif-item:hover { background:var(--surface-elevated); }
.notif-item.unread { border-left:3px solid var(--primary); background:rgba(255,107,53,0.05); }
.notif-icon { width:44px; height:44px; border-radius:50%; background:var(--surface-elevated); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.notif-content { flex:1; }
.notif-text { font-size:15px; line-height:1.4; }
.notif-time { font-size:12px; color:var(--text-secondary); margin-top:4px; }

/* Home / Ana Sayfa */
.home-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 60%);
  padding: clamp(40px, 6vw, 80px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.12), transparent 70%);
  pointer-events: none;
}
.home-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.home-hero .hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 40px;
  position: relative;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--accent);
}
.hero-stat .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}
.section-header a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* Communities */
.communities-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .communities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .communities-grid { grid-template-columns: repeat(3, 1fr); } }

.community-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}
.community-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.community-banner {
  height: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  position: relative;
}
.community-banner .community-icon {
  position: absolute;
  bottom: -24px;
  left: 16px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 3px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.community-body {
  padding: 32px 16px 16px;
}
.community-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.community-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}
.community-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}
.community-join {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.community-join:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* New Members */
.members-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.members-scroll::-webkit-scrollbar { height: 6px; }
.members-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.members-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.member-card {
  min-width: 160px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 16px;
  text-align: center;
  scroll-snap-align: start;
  transition: 0.2s;
  cursor: pointer;
}
.member-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.member-card .member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--border);
}
.member-card .member-name {
  font-weight: 600;
  font-size: 15px;
}
.member-card .member-age {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.member-card .member-location {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.member-card .member-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255,107,53,0.15);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
}

/* Forums */
.forums-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forum-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.2s;
  cursor: pointer;
}
.forum-item:hover {
  border-color: var(--primary);
  background: var(--surface-elevated);
}
.forum-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.forum-info {
  flex: 1;
  min-width: 0;
}
.forum-title {
  font-weight: 600;
  font-size: 15px;
}
.forum-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.forum-stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.forum-stat {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Featured / Tanıtım */
.featured-section {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(0,78,137,0.08));
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255,107,53,0.15);
}
.featured-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 768px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }

.featured-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.featured-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.featured-card .featured-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.featured-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.featured-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Trending Topics */
.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trend-tag {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: 0.2s;
}
.trend-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.trend-tag.hot {
  background: rgba(255,107,53,0.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* Live Activity Bar */
.live-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  overflow: hidden;
}
.live-bar-inner {
  display: flex;
  gap: 32px;
  animation: scrollLeft 30s linear infinite;
  white-space: nowrap;
}
.live-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.live-item .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Success Stories */
.stories-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) { .stories-grid { grid-template-columns: repeat(2, 1fr); } }

.story-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
}
.story-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.story-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.story-author .author-name {
  font-weight: 600;
  font-size: 14px;
}
.story-author .author-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Multi-select chip grid for profile edit */
.multi-select-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.multi-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border, #333);
  background: var(--surface-elevated, #1e1e2e);
  cursor: pointer;
  font-size: 13px;
  user-select: none;
  transition: background 0.15s, border-color 0.15s;
}
.multi-chip input { display: none; }
.multi-chip:has(input:checked) {
  background: var(--primary, #6c63ff);
  border-color: var(--primary, #6c63ff);
  color: #fff;
}

/* Profile */
.profile-page { max-width:720px; margin:0 auto; }

/* Admin */
.admin-page { width:100%; max-width:100%; padding:0 16px; box-sizing:border-box; }
.admin-page .admin-table th,
.admin-page .admin-table td { padding:10px 8px; }
.admin-stats { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:16px; }
.admin-menu { display:flex; flex-direction:column; gap:12px; }
.admin-menu .btn { padding:16px 24px; text-align:left; font-size:15px; display:flex; align-items:center; gap:10px; border-radius:12px; }
.profile-avatar-large { display:flex; justify-content:center; margin-bottom:16px; }
.profile-avatar-large img { width:160px; height:160px; border-radius:50%; object-fit:cover; border:3px solid var(--border); }
.profile-cover { position:relative; overflow:hidden; border-radius:16px; min-height:320px; }
.profile-cover-img { width:100%; height:360px; object-fit:cover; display:block; }
.profile-cover-placeholder { width:100%; height:360px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--primary,#6c63ff),#a855f7,#ec4899); }
.profile-cover-initials { font-size:80px; font-weight:700; color:rgba(255,255,255,0.85); text-shadow:0 2px 10px rgba(0,0,0,0.2); }
.profile-cover-overlay { position:absolute; top:0; left:0; right:0; bottom:0; display:flex; flex-direction:column; justify-content:space-between; padding:20px; background:linear-gradient(to bottom,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 35%,rgba(0,0,0,0) 65%,rgba(0,0,0,0.6) 100%); }
.profile-cover-name { color:#fff; font-size:22px; font-weight:700; text-shadow:0 1px 4px rgba(0,0,0,0.5); }
.profile-cover-meta { color:rgba(255,255,255,0.85); font-size:14px; text-shadow:0 1px 3px rgba(0,0,0,0.5); margin-top:2px; }
.profile-cover-bio { background:rgba(0,0,0,0.35); backdrop-filter:blur(4px); padding:10px 16px; border-radius:10px; color:#fff; font-size:13px; line-height:1.4; }
.profile-stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.profile-stat-card { background:var(--bg-card); border-radius:12px; padding:14px; text-align:center; border:1px solid var(--border,#333); }
.profile-stat-value { font-size:22px; font-weight:700; color:var(--accent); }
.profile-stat-label { font-size:11px; color:var(--text-secondary); margin-top:2px; text-transform:uppercase; letter-spacing:0.5px; }
.profile-section { background:var(--bg-card); border-radius:12px; padding:20px; border:1px solid var(--border,#333); }
.profile-section h4 { font-size:16px; font-weight:700; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.profile-table { width:100%; font-size:14px; }
.profile-table tr td { padding:8px 0; border-bottom:1px solid var(--border,#333); }
.profile-table tr:last-child td { border-bottom:none; }
.profile-table td:first-child { color:var(--text-secondary); width:40%; padding-right:12px; }
.profile-table td:last-child { color:var(--text-primary); }
.media-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:12px; }
.media-item { position:relative; border-radius:10px; overflow:hidden; aspect-ratio:1; background:var(--bg-input); }
.media-item img { width:100%; height:100%; object-fit:cover; }
.media-item video { width:100%; height:100%; object-fit:contain; background:#000; }
video:-webkit-full-screen,
video:fullscreen { width:100%; height:100%; object-fit:contain; background:#000; }
.media-duration { position:absolute; bottom:6px; right:6px; background:rgba(0,0,0,0.7); color:#fff; padding:2px 8px; border-radius:6px; font-size:11px; }
.media-gallery-card { position:relative; border-radius:12px; overflow:hidden; background:var(--bg-input); border:1px solid var(--border); box-shadow:0 2px 8px rgba(0,0,0,0.2); }
.media-gallery-card.photo { aspect-ratio:1; }
.media-gallery-card.video { aspect-ratio:9/16; }
.media-gallery-card img,
.media-gallery-card video { width:100%; height:100%; display:block; }
.media-gallery-card img { object-fit:cover; }
.media-gallery-card video { object-fit:contain; background:#000; }
.media-gallery-card .locked-preview { width:100%; height:100%; filter:blur(14px) brightness(0.6); object-fit:cover; }
.media-gallery-card .locked-overlay { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:rgba(0,0,0,0.35); }
.media-gallery-card .locked-icon { font-size:28px; }
.media-gallery-card .price-badge { position:absolute; bottom:8px; right:8px; background:rgba(0,0,0,0.7); color:#ffd700; padding:3px 10px; border-radius:12px; font-size:11px; font-weight:600; }
.media-gallery-card .media-report-btn { position:absolute; top:6px; right:6px; background:rgba(0,0,0,0.6); border:none; color:rgba(255,255,255,0.6); font-size:13px; cursor:pointer; padding:4px 7px; border-radius:8px; line-height:1; z-index:2; transition:all .2s; }
.media-gallery-card .media-report-btn:hover { background:rgba(200,50,50,0.8); color:#fff; }

/* Admin form inputs */
.admin-page input[type=text],
.admin-page input[type=number],
.admin-page input[type=email],
.admin-page input[type=password],
.admin-page select,
.admin-page textarea {
  background: var(--bg-input, #222);
  color: var(--text-primary, #eee);
  border: 1px solid var(--border, #333);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  transition: border-color 0.2s;
}
.admin-page input[type=text]:focus,
.admin-page input[type=number]:focus,
.admin-page input[type=email]:focus,
.admin-page input[type=password]:focus,
.admin-page select:focus,
.admin-page textarea:focus {
  border-color: var(--accent, #4a9eff);
  outline: none;
}
.admin-page .admin-form-inline {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.prompt-card { background:var(--bg-input); border-radius:10px; padding:14px; }
.prompt-card strong { font-size:13px; color:var(--accent); }
.prompt-card p { font-size:14px; margin-top:4px; }
