.ttt-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ttt-padding-large {
  padding: 80px 20px 70px;
}

.ttt-padding-medium {
  padding: 70px 20px 60px;
}

.ttt-heading-large {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
}

.ttt-heading-large i {
  color: var(--primary-accent);
}

.ttt-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  border-radius: 30px;
  padding: 0.9rem 1.8rem;
  box-shadow: 0 4px 10px rgba(177, 70, 41, 0.3);
  color: white;
  font-weight: 600;
  background-color: var(--primary-accent);
  transition: all 0.3s ease;
}

.ttt-button:hover {
  box-shadow: 0 6px 15px rgba(177, 70, 41, 0.4);
  transform: translateY(-3px);
}


.ttt-hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, #faf4ea 100%);
}

.ttt-hero-section::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(252, 181, 56, 0.15);
}

.ttt-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(177, 70, 41, 0.1);
}

.ttt-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.ttt-hero-text {
  animation: fadeInLeft 1s ease-out;
}

.ttt-hero-text h1 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.2;
}

.ttt-hero-text h1 i {
  color: var(--secondary-accent);
}

.ttt-hero-text p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.7;
}

.ttt-hero-text p i {
  margin-top: 0.3rem;
  color: var(--primary-accent);
}

.ttt-hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.ttt-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11, 77, 60, 0.15);
  transition: transform 0.3s ease;
}

.ttt-hero-image img:hover {
  transform: translateY(-5px);
}


.ttt-bestsellers-section {
  position: relative;
  background-color: #ffffff;
}

.ttt-bestsellers-section>.ttt-container>p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.ttt-bestsellers-section i {
  color: var(--primary-accent);
}

.ttt-bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.ttt-bestseller-item {
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.08);
  background-color: var(--secondary-bg-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.ttt-bestseller-item:hover {
  box-shadow: 0 8px 25px rgba(11, 77, 60, 0.12);
  transform: translateY(-8px);
}

.ttt-bestseller-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
  border-radius: 10px;
}

.ttt-bestseller-item h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.ttt-bestseller-item h3 i {
  color: var(--secondary-accent);
}

.ttt-bestseller-item p {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.ttt-bestseller-item ul {
  margin-top: 1rem;
}

.ttt-bestseller-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}


.ttt-why-section {
  position: relative;
  background: linear-gradient(135deg, #f8f4eb 0%, #fff 100%);
}

.ttt-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: 0 0 0 150px;
  background-color: rgba(252, 181, 56, 0.1);
}

.ttt-why-list {
  margin-top: 2rem;
}

.ttt-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 15px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 3px 10px rgba(11, 77, 60, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  animation: fadeInRight 0.8s ease-out;
}

.ttt-why-list li:hover {
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.1);
  transform: translateX(5px);
}

.ttt-why-list li i {
  margin-top: 0.2rem;
  color: var(--primary-accent);
  font-size: 1.2rem;
}

.ttt-why-section>.ttt-container>p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}


.ttt-categories-section {
  background-color: #ffffff;
}

.ttt-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin: 2.5rem 0;
}

.ttt-category-item {
  position: relative;
  height: max-content;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.ttt-category-item:hover {
  box-shadow: 0 8px 25px rgba(11, 77, 60, 0.15);
  transform: translateY(-5px);
}

.ttt-category-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.ttt-category-item:hover img {
  transform: scale(1.05);
}

.ttt-category-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--primary-accent);
  transition: background 0.3s ease;
}

.ttt-category-link:hover {
  background: var(--text-color);
}

.ttt-category-item p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  background-color: var(--secondary-bg-color);
}

.ttt-categories-section>.ttt-container>p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
}


.ttt-heritage-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5ede0 0%, #fff8f3 100%);
}

.ttt-heritage-section::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(177, 70, 41, 0.1);
}

.ttt-heritage-section>.ttt-container>p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 2rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.ttt-heritage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.ttt-heritage-item {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.08);
  background-color: white;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.8s ease-out;
}

.ttt-heritage-item:hover {
  box-shadow: 0 8px 25px rgba(11, 77, 60, 0.12);
  transform: translateY(-8px);
}

.ttt-heritage-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
  border-radius: 10px;
}

.ttt-heritage-item h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.ttt-heritage-item h3 i {
  color: var(--secondary-accent);
}

.ttt-heritage-item p {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.ttt-heritage-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
}


.ttt-gamenight-section {
  position: relative;
  background-color: #ffffff;
}

.ttt-gamenight-section::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(252, 181, 56, 0.2);
}

.ttt-gamenight-section>.ttt-container>p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.ttt-gamenight-section>.ttt-container>ul {
  margin: 1.5rem 0;
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.08);
  background-color: var(--secondary-bg-color);
  animation: fadeInRight 0.8s ease-out;
}

.ttt-gamenight-section>.ttt-container>ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.ttt-gamenight-section>.ttt-container>ul li:hover {
  transform: translateX(5px);
}

.ttt-gamenight-section>.ttt-container>ul li i {
  color: var(--primary-accent);
}


.ttt-stories-section {
  position: relative;
  background: linear-gradient(135deg, #f8f4eb 0%, #fff 100%);
}

.ttt-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.ttt-story-item {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.08);
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.ttt-story-item:hover {
  box-shadow: 0 8px 25px rgba(11, 77, 60, 0.15);
  transform: translateY(-5px);
}

.ttt-story-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.ttt-story-item p {
  padding: 1.2rem;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.ttt-story-item p i {
  margin-right: 0.5rem;
  color: var(--primary-accent);
}

.ttt-story-item p strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--text-color);
}

.ttt-stories-section>.ttt-container>p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  text-align: center;
}


.ttt-community-section {
  background-color: #ffffff;
}

.ttt-community-section>.ttt-container>p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.ttt-community-section>.ttt-container>ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.ttt-community-section>.ttt-container>ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 3px 10px rgba(11, 77, 60, 0.05);
  background-color: var(--secondary-bg-color);
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out;
}

.ttt-community-section>.ttt-container>ul li:hover {
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.1);
  transform: translateY(-5px);
}

.ttt-community-section>.ttt-container>ul li i {
  margin-top: 0.1rem;
  color: var(--primary-accent);
  font-size: 1.2rem;
}


.ttt-tutorials-section {
  position: relative;
  background: linear-gradient(135deg, #f5ede0 0%, #fff8f3 100%);
}

.ttt-tutorials-section::after {
  content: '';
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50% 50% 0 0;
  background-color: rgba(252, 181, 56, 0.15);
}

.ttt-tutorials-section>.ttt-container>p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.ttt-tutorials-section>.ttt-container>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.ttt-tutorials-section>.ttt-container>ul li {
  display: flex;
  flex: 1 1 300px;
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 3px 10px rgba(11, 77, 60, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.8s ease-out;
}

.ttt-tutorials-section>.ttt-container>ul li:hover {
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.1);
  transform: translateX(5px);
}

.ttt-tutorials-section>.ttt-container>ul li i {
  margin-top: 0.1rem;
  color: var(--primary-accent);
  font-size: 1.2rem;
}


.ttt-support-section {
  background-color: #ffffff;
}

.ttt-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.ttt-support-card {
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.08);
  text-align: center;
  background-color: var(--secondary-bg-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.ttt-support-card:hover {
  box-shadow: 0 8px 25px rgba(11, 77, 60, 0.12);
  transform: translateY(-8px);
}

.ttt-support-card i {
  margin-bottom: 1.2rem;
  color: var(--primary-accent);
  font-size: 2.5rem;
}

.ttt-support-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.ttt-support-card p {
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.ttt-support-section>.ttt-container>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.ttt-support-section>.ttt-container>ul li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(11, 77, 60, 0.1);
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  background-color: white;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out;
}

.ttt-support-section>.ttt-container>ul li:hover {
  box-shadow: 0 5px 15px rgba(11, 77, 60, 0.1);
  transform: translateY(-3px);
}

.ttt-support-section>.ttt-container>ul li i {
  color: var(--primary-accent);
}

.ttt-support-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--secondary-accent);
}

.ttt-support-btn:hover {
  background-color: var(--primary-accent);
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@media screen and (max-width: 1024px) {
  .ttt-heading-large {
    font-size: 1.8rem;
  }

  .ttt-hero-grid {
    gap: 2rem;
  }

  .ttt-hero-text h1 {
    font-size: 2.2rem;
  }

  .ttt-bestsellers-grid,
  .ttt-heritage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ttt-padding-large {
    padding: 60px 20px 50px;
  }

  .ttt-padding-medium {
    padding: 50px 20px 40px;
  }

  .ttt-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .ttt-hero-text {
    order: 2;
  }

  .ttt-hero-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .ttt-hero-text h1 {
    font-size: 1.8rem;
  }

  .ttt-bestsellers-grid {
    grid-template-columns: 1fr;
  }

  .ttt-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ttt-heritage-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .ttt-padding-large {
    padding: 40px 20px 30px;
  }

  .ttt-padding-medium {
    padding: 35px 20px 25px;
  }

  .ttt-heading-large {
    flex-direction: column;
    font-size: 1.5rem;
  }

  .ttt-hero-text h1 {
    font-size: 1.5rem;
  }

  .ttt-hero-text p {
    font-size: 1rem;
  }

  .ttt-categories-grid {
    grid-template-columns: 1fr;
  }

  .ttt-bestseller-item,
  .ttt-heritage-item {
    padding: 1rem;
  }

  .ttt-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .ttt-support-card {
    padding: 1.5rem 1rem;
  }
}

.ttt-gamenight-section>.ttt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}