.tc-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}
.tc-item {
  background: #000;
  border: 1px solid #2a2a3e;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.tc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
  border-color: #ffd700;
}
/* Rank Badge */
.tc-rank {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}
/* Brand / Logo Section */
.tc-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  flex-shrink: 0;
}
.tc-brand a {
  display: block;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}
.tc-brand a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}
.tc-brand img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.tc-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
/* Score */
.tc-score {
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}
.tc-score-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.tc-score-value {
  color: #ffd700;
  font-weight: 700;
  font-size: 16px;
}
/* CTA Section */
.tc-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
  flex-shrink: 0;
}
.tc-btn-play {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-break: break-word;
}
.tc-btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}
.tc-btn-review {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.tc-btn-review:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
/* Specs Section */
.tc-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  flex: 1;
}
.tc-spec {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
}
.tc-spec-label {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.tc-spec-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
/* Bonus Section */
.tc-bonus {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}
.tc-bonus-icon {
  font-size: 32px;
  line-height: 1;
}
.tc-bonus-text {
  color: #ffd700;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.tc-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tc-bonus-list li {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
/* Fine print / disclaimer */
.tc-disclaimer {
  color: #6b7280;
  font-size: 11px;
  line-height: 1.4;
  margin-top: 4px;
}
/* TOP 3 Special Styling */
.tc-item:nth-child(1) .tc-rank {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}
.tc-item:nth-child(2) .tc-rank {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
}
.tc-item:nth-child(3) .tc-rank {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a561 100%);
  box-shadow: 0 4px 20px rgba(205, 127, 50, 0.4);
}
/* Desktop Layout */
@media (min-width: 993px) {
  .tc-item {
    display: grid;
    grid-template-columns: 50px minmax(200px, 220px) minmax(180px, 220px) minmax(200px, 1fr) minmax(300px, 2fr);
    grid-template-rows: auto;
    gap: 30px;
    align-items: start;
  }
  .tc-rank {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .tc-brand {
    grid-column: 2;
    grid-row: 1;
  }
  .tc-cta {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }
  .tc-specs {
    grid-column: 4;
    grid-row: 1;
  }
  .tc-bonus {
    grid-column: 5;
    grid-row: 1;
  }
}
/* Tablet Layout */
@media (max-width: 992px) {
  .tc-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
  }
  .tc-rank {
    width: 50px;
    height: 50px;
  }
  .tc-brand {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .tc-brand a {
    max-width: 200px;
    width: auto;
  }
  .tc-cta {
    width: 100%;
    min-width: 0;
  }
  .tc-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
  }
  .tc-bonus {
    text-align: center;
    width: 100%;
    min-width: 0;
  }
}
/* Mobile Layout */
@media (max-width: 640px) {
  .tc-list {
    padding: 10px;
  }
  .tc-item {
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    margin-bottom: 20px;
    gap: 15px;
  }
  .tc-rank {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .tc-brand {
    width: 100%;
    min-width: 0;
  }
  .tc-brand img {
    max-width: 180px;
  }
  .tc-brand-name {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .tc-score {
    padding: 5px 12px;
  }
  .tc-score-icon {
    width: 16px;
    height: 16px;
  }
  .tc-score-value {
    font-size: 14px;
  }
  .tc-cta {
    width: 100%;
    min-width: 0;
  }
  .tc-btn-play,
  .tc-btn-review {
    padding: 12px 20px;
    font-size: 15px;
    white-space: normal;
  }
  .tc-specs {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }
  .tc-spec {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 10px;
  }
  .tc-spec-label {
    font-size: 12px;
  }
  .tc-spec-value {
    font-size: 14px;
  }
  .tc-bonus {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .tc-bonus-icon {
    font-size: 28px;
  }
  .tc-bonus-text {
    font-size: 16px;
  }
  .tc-bonus-list {
    text-align: left;
  }
  .tc-bonus-list li {
    font-size: 13px;
  }
  .tc-disclaimer {
    font-size: 10px;
    text-align: left;
  }
}
@media (max-width: 380px) {
  .tc-item {
    padding: 15px 10px;
  }
  .tc-brand img {
    max-width: 140px;
  }
  .tc-bonus-text {
    font-size: 14px;
  }
  .tc-bonus-list li {
    font-size: 12px;
  }
}