*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #0f0f0f; color: #e0e0e0; line-height: 1.7; }

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

/* Header */
.header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); border-bottom: 1px solid rgba(255,255,255,0.05); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-size: 24px; font-weight: 700; color: #e94560; text-decoration: none; letter-spacing: -0.5px; }
.logo:hover { color: #ff6b81; }
.nav { display: flex; gap: 25px; }
.nav a { color: #ccc; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: #e94560; }
.nav-admin { background: #e94560; color: #fff !important; padding: 6px 16px; border-radius: 6px; font-size: 13px; }
.nav-admin:hover { background: #ff6b81; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); padding: 60px 0; text-align: center; }
.hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; color: #fff; }
.hero-desc { font-size: 18px; color: #aaa; max-width: 700px; margin: 0 auto; }

/* Categories */
.categories-bar { background: #1a1a2e; padding: 30px 0; }
.categories-bar h2 { font-size: 20px; margin-bottom: 15px; color: #e94560; }
.categories-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.category-tag { background: rgba(233, 69, 96, 0.1); border: 1px solid rgba(233, 69, 96, 0.2); color: #e94560; padding: 6px 14px; border-radius: 20px; font-size: 13px; text-decoration: none; transition: all 0.2s; }
.category-tag:hover { background: #e94560; color: #fff; border-color: #e94560; }

/* Sections */
.section { padding: 50px 0; }
.section-header { margin-bottom: 30px; }
.section-header h2 { font-size: 28px; color: #fff; margin-bottom: 10px; }
.section-header p { color: #999; font-size: 15px; }
.bg-light { background: #151515; }

/* Tabs */
.tabs { display: flex; gap: 5px; margin-bottom: 25px; border-bottom: 1px solid #2a2a2a; padding-bottom: 10px; }
.tab-btn { background: none; border: none; color: #888; padding: 8px 20px; font-size: 14px; cursor: pointer; border-radius: 6px; transition: all 0.2s; font-family: inherit; font-weight: 500; }
.tab-btn:hover { color: #e94560; background: rgba(233, 69, 96, 0.05); }
.tab-btn.active { color: #e94560; background: rgba(233, 69, 96, 0.1); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Listing Grid */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }

/* Listing Card */
.listing-card { background: #1a1a2e; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #2a2a2a; }
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(233, 69, 96, 0.15); }
.listing-card a { text-decoration: none; color: inherit; display: block; }
.listing-img { position: relative; height: 200px; overflow: hidden; }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-category { position: absolute; top: 10px; left: 10px; background: #e94560; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.listing-body { padding: 18px; }
.listing-body h3 { font-size: 16px; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.listing-body p { font-size: 13px; color: #888; line-height: 1.5; }
.listing-meta { margin-top: 12px; font-size: 12px; color: #666; display: flex; align-items: center; gap: 15px; }

/* SEO Content */
.seo-content h2 { color: #fff; font-size: 24px; margin-bottom: 15px; }
.seo-content p { color: #999; font-size: 14px; margin-bottom: 20px; }
.keyword-cloud { background: #1a1a2e; padding: 20px; border-radius: 10px; border: 1px solid #2a2a2a; }
.keyword-cloud strong { color: #e94560; display: block; margin-bottom: 10px; font-size: 15px; }
.keyword-cloud span { color: #666; font-size: 12px; line-height: 2; word-spacing: 8px; }

/* Footer */
.footer { background: #0a0a0a; border-top: 1px solid #1a1a2e; padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-col h3 { color: #e94560; font-size: 16px; margin-bottom: 15px; }
.footer-col p { color: #666; font-size: 13px; line-height: 1.6; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #888; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #e94560; }
.footer-bottom { border-top: 1px solid #1a1a2e; padding-top: 20px; text-align: center; }
.footer-bottom p { color: #555; font-size: 12px; }
.footer-tags { margin-top: 8px; color: #333; font-size: 11px; word-spacing: 6px; }

/* Model Detail Page */
.model-detail { padding: 40px 0; }
.model-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.model-photo { border-radius: 12px; overflow: hidden; }
.model-photo img { width: 100%; height: auto; border-radius: 12px; }
.model-info h1 { font-size: 32px; color: #fff; margin-bottom: 10px; }
.model-info .meta { color: #888; font-size: 14px; margin-bottom: 20px; display: flex; gap: 20px; flex-wrap: wrap; }
.model-info .meta span { display: flex; align-items: center; gap: 5px; }
.model-info .description { color: #ccc; font-size: 15px; line-height: 1.8; margin-bottom: 25px; padding: 20px; background: #1a1a2e; border-radius: 10px; border: 1px solid #2a2a2a; }
.model-contact { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { padding: 12px 30px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; font-family: inherit; }
.btn-primary { background: #e94560; color: #fff; }
.btn-primary:hover { background: #ff6b81; transform: translateY(-2px); }
.btn-phone { background: #2d6a4f; color: #fff; }
.btn-phone:hover { background: #40916c; transform: translateY(-2px); }
.model-stats { margin-top: 20px; color: #555; font-size: 13px; }
.model-stats span { margin-right: 15px; }
.model-warning { margin-top: 20px; padding: 15px; background: rgba(233, 69, 96, 0.05); border: 1px solid rgba(233, 69, 96, 0.2); border-radius: 8px; font-size: 12px; color: #e94560; }

/* Category Page */
.category-header { padding: 40px 0; text-align: center; }
.category-header h1 { font-size: 36px; color: #fff; margin-bottom: 10px; }

/* Admin Styles */
.admin-body { background: #0f0f0f; }
.admin-panel { max-width: 1200px; margin: 0 auto; padding: 20px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid #2a2a2a; margin-bottom: 30px; }
.admin-header h1 { color: #fff; font-size: 24px; }
.admin-header a { color: #e94560; text-decoration: none; }
.admin-table { width: 100%; border-collapse: collapse; background: #1a1a2e; border-radius: 10px; overflow: hidden; }
.admin-table th { background: #0f3460; color: #fff; padding: 12px 15px; text-align: left; font-size: 13px; }
.admin-table td { padding: 12px 15px; border-bottom: 1px solid #2a2a2a; font-size: 13px; }
.admin-table tr:hover td { background: rgba(233, 69, 96, 0.05); }
.admin-table a { color: #e94560; text-decoration: none; }
.admin-table a:hover { text-decoration: underline; }

.admin-form { background: #1a1a2e; padding: 30px; border-radius: 10px; border: 1px solid #2a2a2a; }
.admin-form label { display: block; color: #ccc; font-size: 14px; margin-bottom: 5px; font-weight: 500; }
.admin-form input, .admin-form select, .admin-form textarea { width: 100%; padding: 10px 14px; background: #0f0f0f; border: 1px solid #2a2a2a; border-radius: 6px; color: #fff; font-size: 14px; margin-bottom: 15px; font-family: inherit; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { outline: none; border-color: #e94560; }
.admin-form textarea { min-height: 150px; resize: vertical; }
.admin-form .btn { margin-top: 10px; }
.admin-status { padding: 12px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.admin-status.success { background: rgba(45, 106, 79, 0.2); border: 1px solid #2d6a4f; color: #2d6a4f; }
.admin-status.error { background: rgba(233, 69, 96, 0.1); border: 1px solid #e94560; color: #e94560; }
.admin-login { max-width: 400px; margin: 100px auto; text-align: center; }
.admin-login h1 { color: #fff; margin-bottom: 30px; }

/* AMP Page */
.amp-page { background: #fff; color: #333; font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
.amp-header { background: #e94560; color: #fff; padding: 15px; text-align: center; font-size: 18px; font-weight: 700; }
.amp-ad { padding: 15px; border-bottom: 1px solid #eee; }
.amp-ad h3 { font-size: 16px; margin-bottom: 5px; color: #333; }
.amp-ad p { font-size: 13px; color: #666; }

/* Blog */
.blog-list { display: grid; gap: 20px; }
.blog-item { background: #1a1a2e; padding: 20px; border-radius: 10px; border: 1px solid #2a2a2a; }
.blog-item h2 { font-size: 18px; margin-bottom: 8px; }
.blog-item h2 a { color: #fff; text-decoration: none; }
.blog-item h2 a:hover { color: #e94560; }
.blog-item .date { color: #555; font-size: 12px; margin-bottom: 10px; }
.blog-item p { color: #888; font-size: 14px; }

/* Pagination */
.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.pagination a { padding: 8px 16px; background: #1a1a2e; border: 1px solid #2a2a2a; border-radius: 6px; color: #ccc; text-decoration: none; font-size: 14px; }
.pagination a:hover { border-color: #e94560; color: #e94560; }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #1a1a2e; padding: 20px; border-bottom: 1px solid #2a2a2a; z-index: 99; }
  .nav.open { display: flex; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .listings-grid { grid-template-columns: 1fr; }
  .model-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .tabs { overflow-x: auto; }
  .categories-grid { gap: 5px; }
  .category-tag { font-size: 12px; padding: 4px 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 24px; }
  .section { padding: 30px 0; }
  .listing-body h3 { font-size: 15px; }
}

/* Homepage new elements */
.section-title { font-size: 22px; color: #e94560; margin-bottom: 20px; }
.seo-text { background: #1a1a2e; padding: 25px; border-radius: 10px; border: 1px solid #2a2a2a; }
.seo-text h2 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.seo-text p { color: #888; font-size: 13px; line-height: 1.7; margin-bottom: 10px; }
.seo-text .tags { color: #666; font-size: 12px; line-height: 1.8; word-spacing: 6px; }
