@font-face {
  font-family: "Jost";
  src: url("./jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* CSS Variables - Dark Mode Default */
:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-tertiary: #777777;
  --border-color: #2a2a2a;
  --card-bg: #1c1c1c;
  --card-hover: #252525;
  --profile-border: #333333;
  --accent-color: #ff4081;
}

:root.light-mode {
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f9;
  --text-primary: #333333;
  --text-secondary: #555555;
  --text-tertiary: #777777;
  --border-color: #eee;
  --card-bg: #f9f9f9;
  --card-hover: #f0f0f0;
  --profile-border: #eee;
  --accent-color: #e22658;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: block;
}

body {
  font-family: "Jost", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.qoute {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-primary);
}

/* Theme Toggle Button */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.theme-toggle:hover {
  background-color: var(--card-hover);
  transform: scale(1.1);
}

@media screen and (max-width: 480px) {
  .theme-toggle {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Header Section */
.profile-section {
  text-align: center;
  margin-bottom: 40px;
}

.profile-img-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--profile-border);
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.profile-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-primary);
}

.verified-icon {
  color: #1da1f2;
  font-size: 20px;
}

.profile-desc {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}

.profile-desc p {
  margin-bottom: 10px;
}

/* Links Section */
.links-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-primary);
  text-transform: uppercase;
}

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

.link-list li {
  margin-bottom: 15px;
}

.link-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.link-item:hover {
  background-color: var(--card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.link-icon {
  margin-right: 15px;
}

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

.link-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.link-text p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Carousel Section */
.carousel-section {
  margin-bottom: 40px;
  position: relative;
}

.carousel-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;
}

.carousel-slide {
  display: none;
  width: 100%;
  aspect-ratio: 4/5;
}

.carousel-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  height: 100%;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Footer Section */
.footer-section {
  text-align: center;
}

.hotline {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.hotline span {
  color: var(--accent-color);
}

.address {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Responsive */
@media screen and (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }
}