/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  background: #000000;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-sp {
  color: #ff6b35;
}

.logo-love {
  color: #ffffff;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #ff6b35;
}

.nav-link.dropdown svg {
  transition: transform 0.2s ease;
}

.nav-link.dropdown:hover svg {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.login-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
}

.login-btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Featured Models Section */
.featured-models {
  margin-bottom: 40px;
}

.largura_grakz {
  width: 100%;
}

.novid {
  padding: 0 20px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-slide .text-sm {
  font-size: 14px;
  padding: 8px 0;
  font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: -15px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

.hidemobile {
  display: block;
}

@media (max-width: 768px) {
  .hidemobile {
    display: none;
  }
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.section-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  background: #1a1a1a;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #2a2a2a;
}

/* Stories Section */
.stories-section {
  margin-bottom: 40px;
}

.stories-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff6b35;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.story-item:hover {
  transform: scale(1.05);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Models Grid Section */
.models-section {
  margin-bottom: 40px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.model-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.model-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.model-name {
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}

/* Info Section */
.info-section {
  margin-bottom: 40px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 32px;
}

.info-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
}

.info-content {
  margin-bottom: 24px;
}

.info-content p {
  margin-bottom: 16px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.7;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #2a2a2a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
  cursor: pointer;
}

.tag:hover {
  background: #ff6b35;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #1a1a1a;
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.footer-list a:hover {
  color: #ff6b35;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.news-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
}

.news-desc {
  color: #cccccc;
  font-size: 12px;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: #888888;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
    height: 56px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .main-content {
    padding: 16px;
  }
  
  .featured-container {
    padding: 0 20px;
  }
  
  .featured-card {
    width: 240px;
  }
  
  .featured-img {
    height: 300px;
  }
  
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .model-img {
    height: 280px;
  }
  
  .info-section {
    padding: 24px;
  }
  
  .info-title {
    font-size: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .featured-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .models-grid {
    grid-template-columns: 1fr;
  }
  
  .model-img {
    height: 320px;
  }
  
  .featured-img {
    height: 250px;
  }
  
  .stories-container {
    gap: 12px;
  }
  
  .story-item {
    width: 70px;
    height: 70px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444444;
}

/* Placeholder images */
.featured-img[src*="placeholder"],
.model-img[src*="placeholder"],
.story-img[src*="placeholder"],
.news-img[src*="placeholder"] {
  background: linear-gradient(45deg, #2a2a2a 25%, transparent 25%), 
              linear-gradient(-45deg, #2a2a2a 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #2a2a2a 75%), 
              linear-gradient(-45deg, transparent 75%, #2a2a2a 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  position: relative;
}

.featured-img[src*="placeholder"]::after,
.model-img[src*="placeholder"]::after,
.story-img[src*="placeholder"]::after,
.news-img[src*="placeholder"]::after {
  content: "📷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #666;
}