:root {
    /* Color Palette - Moody, Elegant, Montreal Winter Night */
    --bg-dark: #0f1115;
    --bg-secondary: #16191f;
    --bg-card: #13151a;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-gold: #c5a059;
    --accent-gold-hover: #debb7a;
    --accent-red: #d64541; /* For red flags */
    --border-color: #333;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 17, 21, 0.95);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo .accent {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    opacity: 0.8;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.btn-login {
    border: 1px solid var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
}

.btn-login:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 17, 21, 0.5), rgba(15, 17, 21, 0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Adjusted for longer title */
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-gold);
}

.hero-text-block {
    margin-bottom: 3rem;
    text-align: left;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 4px 4px 0;
}

.hero-text-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #ddd;
}

.highlight-text {
    font-size: 1.15rem;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.3);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background-color: rgba(255,255,255,0.05);
}

/* --- Sections General --- */
.section {
    padding: 6rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Philosophy / Reality Section --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.accent-text {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 2rem;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.05rem;
}

.feature-list {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #ddd;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.quote-box {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    font-style: italic;
    border-radius: 4px;
}

.img-box {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
}

.img-1 {
    background-image: url('images/bg1.jpg');
}
.img-2{
    background-image: url('images/sugardaddy.jpg');
}
.img-3{
    background-image: url('images/sugarbaby.jpg');
}
.img-4{
    background-image: url('images/tips.jpg');
}

.img-box::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    z-index: -1;
}

/* --- Plan Section --- */
.plan-section {
    background-color: var(--bg-secondary);
}

.stories-section {
    background-color: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 1;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-desc {
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-content ul li, .card-content ol li {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
    padding-left: 1.2rem;
    position: relative;
}

.card-content ul li::before {
    content: '›';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-content ol {
    counter-reset: item;
}

.card-content ol li {
    padding-left: 1.5rem;
}

.card-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.tip {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.result-text {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: rgba(197, 160, 89, 0.1);
    padding: 1rem;
    border-radius: 4px;
}

/* --- Vibe Banner --- */
.vibe-banner {
    padding: 8rem 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1576402187878-974f70c890a5?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
}

.vibe-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    color: #fff;
}

/* --- Security Section --- */
.security-section {
    background-color: var(--bg-dark);
}

.red-flags-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #ccc;
}

.red-flags-list li::before {
    content: '⚠';
    color: var(--accent-red);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* --- Advice Section --- */
.advice-section {
    background-color: var(--bg-secondary);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.advice-col h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.advice-col p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.advice-col ul {
    margin-top: 1rem;
}

.advice-col ul li {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    list-style: disc;
    margin-left: 1.2rem;
}

/* --- Hub Section --- */
.hub-section {
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(15,17,21,0.85), rgba(15,17,21,0.85)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.blog-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
}

.blog-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-item:hover {
    border-color: var(--accent-gold);
    background: rgba(197,160,89,0.05);
    transform: translateY(-2px);
}
.hub-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.hub-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hub-link {
    display: block;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.hub-link:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateX(5px);
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* --- Footer --- */
footer {
    padding: 4rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

/* Section footer */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-text-block {
        padding: 1.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .img-box {
        height: 300px;
        order: -1;
    }

    .reverse-mobile .img-box {
        order: 0; /* Keep image on top/start if needed, or adjust */
    }
    
    .nav-links {
        display: none; /* In a real site, add a hamburger menu */
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .hub-grid {
        grid-template-columns: 1fr;
    }
}

/* Hub card (links turned into cards) */
.hub-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.hub-card:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-3px);
}

/* Profiles Section */
.profiles-section {
    background-color: var(--bg-dark);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 1.25rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(197,160,89,0.6), rgba(22,25,31,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.profile-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.profile-bio {
    color: #d9d9d9;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.profile-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.profile-tags span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    border: 1px solid rgba(197,160,89,0.4);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}
/* =========================
   Profiles: fix image overflow
   ========================= */

.profiles-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* 卡片一定要裁切 */
.profile-card{
  overflow: hidden;
  border-radius: 18px;
  min-width: 0; /* 防止 grid 子项溢出 */
}

/* 图片区域：固定比例 + 裁切 */
.profile-top{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 你可以改成 1/1 或 3/4 */
  overflow: hidden;
  border-radius: 14px;
}

/* 关键：图片必须跟随容器，裁切而不是撑开 */
.profile-photo{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 徽章固定在图上，不挤占布局 */
.verified-pill{
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

/* 移动端适配 */
@media (max-width: 1024px){
  .profiles-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .profiles-grid{ grid-template-columns: 1fr; }
  .profile-top{ aspect-ratio: 16 / 10; }
}
