:root {
  --primary-color: #ff3a3a;
  --secondary-color: #6441a5;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --twitch-purple: #9147ff;
  --twitch-green: #1CB96A;
  --discord-blue: #5865f2;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #e03131;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #563d7c;
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto;
  border-radius: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.nav-list {
  display: flex;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url("../img/setup.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  margin-top: -70px;
  padding-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-buttons .btn {
  min-width: 180px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width:300px;
    height:300px;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--dark-color);
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px);
}

.social-links a:nth-child(1):hover {
  background-color: var(--twitch-purple);
}

.social-links a:nth-child(2):hover {
  background-color: var(--discord-blue);
}

.social-links a:nth-child(3):hover {
  background-color: var(--primary-color);
}

.social-links a:nth-child(4):hover {
  background-color: #ff9900;
}

.schedule-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.schedule-day {
  background-color: white;
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.schedule-day:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.schedule-day h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.schedule-day p {
  font-weight: 500;
  margin-bottom: 5px;
}

.schedule-day span {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(100, 65, 165, 0.1);
  color: var(--secondary-color);
  border-radius: 20px;
  font-size: 0.9rem;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
}

.partners-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 60px;
}

.member-card,
.partner-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.member-card:hover,
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image,
.partner-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.member-image img,
.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-image img,
.partner-card:hover .partner-image img {
  transform: scale(1.1);
}

.member-info,
.partner-info {
  padding: 20px;
}

.member-info h3,
.partner-info h3 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.member-info p,
.partner-info p {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.member-social,
.partner-social {
  margin-top: 15px;
}

.member-social a,
.partner-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--twitch-purple);
  color: white;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.member-social a:hover,
.partner-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.support-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.support-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.5rem;
  color: white;
}

.support-card:nth-child(1) .support-icon {
  background: linear-gradient(135deg, #ff3a3a 0%, #ff6b6b 100%);
}

.support-card:nth-child(2) .support-icon {
  background: linear-gradient(135deg, #ff9900 0%, #f7ca00 100%);
}

.support-card h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

.support-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.btn-support {
  background: var(--dark-color);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-support:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 58, 58, 0.3);
}

.contact-methods-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.contact-card {
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: white;
}

.contact-icon.twitch {
  background: var(--twitch-purple);
}

.contact-icon.discord {
  background: var(--discord-blue);
}

.contact-icon.email {
  background: var(--primary-color);
}

.contact-card h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark-color);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 58, 58, 0.3);
}

.btn-contact i {
  font-size: 1.1rem;
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .about-image,
  .about-text,
  .contact-info,
  .contact-form {
    flex: none;
    width: 50%;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .contact-form {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-list li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .schedule-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .schedule-container {
    grid-template-columns: 1fr;
  }

  .team-container,
  .partners-container {
    grid-template-columns: 1fr;
  }
}

.game-hero {
  background: url("../img/tfd.webp") no-repeat center center/cover;
  min-height: 500px;
}

.game-hero2 {
  background: url("../img/td2.avif") no-repeat center center/cover;
  min-height: 500px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.guide-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.guide-card-header {
  height: 180px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}

.guide-card-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.guide-card-header h3 {
  position: relative;
  color: white;
  font-size: 1.8rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-card-body {
  padding: 20px;
}

.guide-features {
  margin-bottom: 20px;
}

.guide-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  background: var(--dark-color);
  color: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #333;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.accordion-content p {
  padding: 20px;
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .guide-card-header {
    height: 150px;
  }
}

.farm-guide {
  padding: 15px;
}

.time-estimate {
  background: rgba(100, 65, 165, 0.1);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.farm-step {
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
  margin-bottom: 25px;
  position: relative;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-difficulty {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  color: white;
}

.step-difficulty.normal {
  background: var(--success-color);
}

.step-difficulty.hard {
  background: var(--danger-color);
}

.step-difficulty.switchable {
  background: linear-gradient(
    to right,
    var(--success-color) 50%,
    var(--danger-color) 50%
  );
}

.step-location {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.step-instructions {
  padding-left: 20px;
  margin-bottom: 10px;
}

.step-instructions li {
  margin-bottom: 5px;
}

.step-tip {
  background: rgba(255, 193, 7, 0.15);
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-requirements {
  background: rgba(108, 117, 125, 0.1);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.mission-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.mission-option {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mission-option.recommended {
  border: 2px solid var(--success-color);
}

.mission-option h6 {
  color: var(--dark-color);
  margin-bottom: 8px;
}

.step-final {
  font-style: italic;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .mission-options {
    flex-direction: column;
  }

  .mission-option {
    min-width: 100%;
  }
}

.step-warning {
  background: rgba(220, 53, 69, 0.15);
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--danger-color);
  font-weight: 500;
}

.step-warning i {
  font-size: 1.2rem;
}

.optimization-section {
  background: rgba(40, 167, 69, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.optimization-section h5 {
  color: var(--success-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.optimization-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.optimization-tip {
  background: white;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.optimization-tip i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.optimization-tip p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .optimization-tips {
    grid-template-columns: 1fr;
  }

  .optimization-tip {
    flex-direction: column;
    text-align: center;
  }
}

.minimal-spreadsheet {
  padding: 20px;
  text-align: center;
}

.btn-block {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.spreadsheet-note {
  margin-top: 15px;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.simple-tool-link {
  padding: 20px;
  text-align: center;
}

.btn-block {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.tool-note {
  margin-top: 15px;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.knowledge-guide {
  padding: 15px;
}

.guide-intro {
  text-align: center;
  margin-bottom: 25px;
}

.guide-intro h4 {
  color: var(--secondary-color);
}

.guide-intro p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-color);
}

.material-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.material-card {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.material-card.recommended {
  border: 2px solid var(--success-color);
  background: rgba(40, 167, 69, 0.05);
}

.material-card.not-recommended {
  border: 2px solid var(--danger-color);
  background: rgba(220, 53, 69, 0.05);
}

.material-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.material-header i {
  font-size: 1.5rem;
}

.material-header h5 {
  margin: 0;
}

.recommended .material-header i {
  color: var(--success-color);
}

.not-recommended .material-header i {
  color: var(--danger-color);
}

.material-stats {
  padding-left: 20px;
}

.material-stats li {
  margin-bottom: 8px;
}

.important-note {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  align-items: center;
}

.important-note.warning {
  background: rgba(255, 193, 7, 0.15);
  border-left: 4px solid var(--warning-color);
}

.important-note i {
  font-size: 1.8rem;
}

.step-by-step {
  background: rgba(100, 65, 165, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.step-by-step ol {
  padding-left: 25px;
}

.step-by-step li {
  margin-bottom: 10px;
}

.step-tip {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.armor-warning {
  margin-top: 30px;
}

.armor-mechanics {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.armor-mechanics h6 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .material-comparison {
    grid-template-columns: 1fr;
  }

  .important-note {
    flex-direction: column;
    text-align: center;
  }
}

.recalibration-guide {
  padding: 15px;
}

.mechanic-section {
  margin-bottom: 40px;
}

.section-header {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-header i {
  font-size: 1.8rem;
}

.step-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
  padding-top: 3rem;
}

.step {
  display: flex;
  gap: 15px;
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h5 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.important-note {
  background: rgba(100, 65, 165, 0.1);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.important-note.warning {
  background: rgba(255, 193, 7, 0.15);
  border-left: 4px solid var(--warning-color);
}

.visual-example {
  margin: 25px 0;
}

.example-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  margin: 0 auto;
}

.example-header {
  background: var(--dark-color);
  color: white;
  padding: 12px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  font-weight: 500;
}

.example-content {
  padding: 15px;
}

.attribute-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.attribute-name {
  font-weight: 500;
}

.attribute-value {
  color: var(--success-color);
  font-weight: bold;
}

.attribute-icon {
  color: var(--secondary-color);
}

.example-note {
  font-size: 0.8rem;
  color: var(--gray-color);
  margin-top: 10px;
  text-align: center;
}

.pro-tip {
  background: rgba(40, 167, 69, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.pro-tip h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--success-color);
  margin-bottom: 10px;
}

.pro-tip ol {
  padding-left: 20px;
}

.pro-tip li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .step-container {
    grid-template-columns: 1fr;
  }

  .example-card {
    max-width: 100%;
  }
}

body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode .navbar {
  background-color: rgba(33, 33, 33, 0.9) !important;
}

.dark-mode .navbar.scrolled {
  background-color: rgba(33, 33, 33, 0.95) !important;
}

.dark-mode .section-header h2,
.dark-mode .member-info h3,
.dark-mode .partner-info h3,
.dark-mode .support-card h3,
.dark-mode .contact-card h3 {
  color: #ffffff;
}

.dark-mode .guide-card,
.dark-mode .mission-option,
.dark-mode .accordion-content,
.dark-mode .step-by-step,
.dark-mode .armor-mechanics,
.dark-mode .example-card,
.dark-mode .pro-tip,
.dark-mode .optimization-tip,
.dark-mode .material-card,
.dark-mode .member-card,
.dark-mode .partner-card,
.dark-mode h6,
.dark-mode h5 {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

.dark-mode .accordion-header {
  background-color: #333;
}

.dark-mode .schedule-day,
.dark-mode .support-card,
.dark-mode .contact-card {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

.dark-mode .schedule-day span {
  background-color: rgba(100, 65, 165, 0.3);
}

.dark-mode .important-note {
  background-color: rgba(100, 65, 165, 0.2);
}

.dark-mode .important-note.warning {
  background-color: rgba(255, 193, 7, 0.2);
}

.dark-mode .step-tip {
  background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .attribute-line {
  border-bottom-color: #333;
}

.dark-mode .schedule-day span {
  color: #e0e0e0;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
}

.dark-mode .dark-mode-toggle {
  background-color: var(--secondary-color);
}

.kk-img {
  width: 20%;
  padding-bottom: 1rem;
}
