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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0d0d0d;
}

.lld-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lld-header {
  background: linear-gradient(135deg, #141e30 0%, #243b55 100%);
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lld-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 25px;
}

.lld-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.lld-logo {
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lld-nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.lld-nav-link {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
}

.lld-nav-link:hover {
  color: #fff;
  background: rgba(240, 147, 251, 0.15);
  transform: translateY(-2px);
}

.lld-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/blg202501.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  text-align: center;
  position: relative;
}

.lld-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.lld-hero-content {
  position: relative;
  z-index: 1;
}

.lld-hero h1 {
  font-size: 62px;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: -1px;
}

.lld-hero h1 a {
  color: inherit;
  text-decoration: none;
}

.lld-hero-subtitle {
  font-size: 24px;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lld-btn-primary {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
  font-size: 17px;
}

.lld-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.6);
}

.lld-section {
  padding: 90px 0;
  flex: 1;
}

.lld-section-title {
  text-align: center;
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 55px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 45px;
}

.lld-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(240, 147, 251, 0.1);
}

.lld-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(240, 147, 251, 0.3);
  border-color: rgba(240, 147, 251, 0.3);
}

.lld-card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lld-card:hover .lld-card-img {
  transform: scale(1.08);
}

.lld-card-body {
  padding: 28px;
}

.lld-card-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.lld-card-text {
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.lld-card-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #999;
  flex-wrap: wrap;
}

.lld-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.lld-category-item {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
  padding: 45px 35px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.lld-category-item:hover {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
  transform: translateY(-8px);
  border-color: rgba(240, 147, 251, 0.3);
}

.lld-category-icon {
  font-size: 52px;
  margin-bottom: 18px;
  display: block;
}

.lld-category-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.lld-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.lld-feature-box {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
  padding: 45px 38px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(240, 147, 251, 0.15);
  transition: all 0.3s ease;
}

.lld-feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 147, 251, 0.4);
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
}

.lld-feature-icon {
  font-size: 60px;
  margin-bottom: 22px;
}

.lld-feature-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.lld-feature-desc {
  color: #b8b8b8;
  line-height: 1.8;
  font-size: 15px;
}

.lld-footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 70px 0 35px;
  border-top: 2px solid rgba(240, 147, 251, 0.2);
  margin-top: auto;
}

.lld-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px;
  margin-bottom: 45px;
}

.lld-footer-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
}

.lld-footer-text {
  color: #999;
  line-height: 1.8;
  font-size: 15px;
}

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

.lld-footer-link {
  color: #999;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.lld-footer-link:hover {
  color: #f093fb;
  padding-left: 8px;
}

.lld-copyright {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 14px;
}

.lld-timeline {
  max-width: 950px;
  margin: 0 auto;
}

.lld-timeline-item {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
  padding: 35px;
  margin-bottom: 28px;
  border-radius: 14px;
  border-left: 5px solid #f093fb;
  transition: all 0.3s ease;
}

.lld-timeline-item:hover {
  transform: translateX(12px);
  box-shadow: 0 8px 25px rgba(240, 147, 251, 0.2);
}

.lld-timeline-date {
  color: #f093fb;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 15px;
}

.lld-timeline-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.lld-timeline-text {
  color: #b8b8b8;
  line-height: 1.8;
  font-size: 15px;
}

.lld-page-header {
  background: linear-gradient(135deg, #141e30 0%, #243b55 100%);
  padding: 80px 0;
  text-align: center;
}

.lld-page-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 18px;
}

.lld-page-subtitle {
  font-size: 20px;
  color: #ccc;
}

.lld-content-box {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
  padding: 45px;
  border-radius: 16px;
  margin-bottom: 35px;
  border: 1px solid rgba(240, 147, 251, 0.1);
}

.lld-content-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.lld-content-text {
  color: #b8b8b8;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 15px;
}

.lld-list {
  list-style: none;
  padding-left: 0;
}

.lld-list-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #b8b8b8;
  font-size: 15px;
}

.lld-list-item:before {
  content: '▸ ';
  color: #f093fb;
  font-weight: bold;
  margin-right: 10px;
}

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

  .lld-hero h1 {
    font-size: 38px;
  }

  .lld-section-title {
    font-size: 34px;
  }

  .lld-grid {
    grid-template-columns: 1fr;
  }

  .lld-hero-subtitle {
    font-size: 18px;
  }
}

.lld-anim-fade {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lld-anim-fade.lld-visible {
  opacity: 1;
  transform: translateY(0);
}

.lld-bg-alt {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
