.cb-navbar-container {
  background: linear-gradient(90deg, #1a1a1a, #292929);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cb-navbar-wrapper {
  padding: 0.5rem 1rem;
}

.cb-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}
.cb-logo:hover {
  color: #ffcc00;
}

.cb-link {
  color: #525151 !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.cb-link:hover {
  color: #ffcc00;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.cb-dropdown-menu {
  background: #222;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cb-dropdown-list li + li {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cb-dropdown-link {
  color: #e0e0e0;
  padding: 0.5rem 1rem;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}
.cb-dropdown-link:hover {
  color: #ffcc00;
  background: rgba(255, 255, 255, 0.05);
}

.cb-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cb-hero-container {
  max-width: 780px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 3rem 2rem;
}

.cb-hero-overlay {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cb-hero-title {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.cb-hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #f5f5f5;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cb-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cb-btn-primary {
  background: linear-gradient(90deg, #ff3d00, #ff9900);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.cb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.cb-btn-outline {
  background: transparent;
  border: 2px solid #929292;
  border-radius: 8px;
  color: #929292 !important;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cb-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffcc00 !important;
  border-color: #ffcc00;
}

.cb-main {
  background-color: #f9f9fb;
  color: #222;
  padding: 4rem 1.5rem;
}

.cb-info-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
}
.cb-info-wrapper:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.cb-info {
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.7;
  text-align: justify;
}

.cb-info h2 {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
  border-left: 5px solid #ff9900;
  padding-left: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cb-info p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.25rem;
}

.cb-faq-section {
  background: linear-gradient(180deg, #f8f8fb 0%, #ffffff 100%);
  padding: 5rem 1.5rem;
  color: #222;
}

.cb-faq-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
}

.cb-faq-container:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);

.cb-faq-container h2 {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.cb-faq-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.75rem auto 0;
  background: #ff9900;
  border-radius: 2px;
}

.cb-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.cb-faq-question {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.cb-faq-question:hover {
  color: #ff9900;
}

.cb-faq-answer {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

[uk-accordion] .uk-open .cb-faq-question {
  color: #ff9900;
}

.cb-footer {
  background: linear-gradient(180deg, #1a1a1f 0%, #101013 100%) !important;
  color: #ddd;
  padding: 4rem 1.5rem 2rem;
  font-family: "Noto Sans KR", sans-serif;
}

.cb-footer a {
  color: #ccc;
  text-decoration: none;
}

.cb-footer a:hover {
  color: #ff9900;
}

.cb-footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cb-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
}

.cb-footer-grid h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cb-footer-grid h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff9900;
  margin-top: 0.4rem;
  border-radius: 2px;
}

.cb-footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cb-footer-grid ul li {
  margin-bottom: 0.5rem;
}

.cb-footer-grid ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.cb-footer-grid ul li a:hover {
  color: #ff9900;
  padding-left: 5px;
}

.cb-footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.cb-footer-bottom p {
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 0.3px;
}

.cb-footer:hover {
  background: linear-gradient(180deg, #1c1c22 0%, #111114 100%);
  transition: background 0.4s ease;
}

.cb-btn-primary-alt {
  background-color: #1e87f0;
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 6px rgba(30, 135, 240, 0.3);
}
.cb-btn-primary-alt:hover {
  background-color: #0f6ecd;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(30, 135, 240, 0.35);
}

.cb-btn-outline-alt {
  background-color: #fff;
  color: #1e87f0 !important;
  border: 2px solid #1e87f0;
  box-shadow: none;
}
.cb-btn-outline-alt:hover {
  background-color: #1e87f0;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(30, 135, 240, 0.25);
}

.slot-info-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-collapse: separate;
  border-spacing: 0;
}

.slot-info-table caption {
  font-weight: 700;
  color: #1e87f0;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.slot-info-table th {
  background-color: #f3f7fb;
  color: #1e87f0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 1rem;
  border-bottom: 2px solid #e5e9f2;
}

.slot-info-table td {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px solid #eceff4;
  background-color: #fff;
}

.slot-info-table tr:nth-child(even) td {
  background-color: #f9fafc;
}

.slot-info-table tr:hover td {
  background-color: #eaf4ff;
  transition: background 0.25s ease;
}

.slot-info-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Адаптивность */
@media (max-width: 640px) {
  .slot-info-table th, .slot-info-table td {
    padding: 0.6rem 0.8rem;
  }
  .slot-info-table caption {
    font-size: 1rem;
  }
}
