@import url("https://fonts.googleapis.com/css2?family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --orange: #f25a06;
  --orange-hover: #c41824;
  --heading-font: "Trirong", serif;
  --rule-line-left: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  list-style-type: none;
}

section,
footer {
  overflow-x: hidden;
}

body {
  height: 100vh;
  background: #fafafa;
}

header {
  z-index: 999;
  background-color: rgba(56, 54, 54, 0.6);
}

/* Tournament Hero */
.tournament-hero {
  background: url("../assets/bg.jpeg");
  padding: 180px 20px 90px;
  text-align: center;
  color: white;
}
.agra-logo {
  max-width: 150px;
  margin-bottom: 20px;
}
.tournament-hero h1 {
  font-size: 3rem;
  color: var(--orange);
}
.tournament-hero p {
  font-size: 1.2rem;
  font-style: italic;
}

/* Tournament Experience */
.tuff-experience-section {
  padding: 100px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tuff-experience-section h2 {
  font-size: 2.8rem;
  color: var(--orange);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
}

.experience-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

/* Glowy blobs */
.tuff-experience-section::before,
.tuff-experience-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}
.tuff-experience-section::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, #ffe0b2 0%, transparent 70%);
}
.tuff-experience-section::after {
  width: 300px;
  height: 300px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, #b3e5fc 0%, transparent 70%);
}

/* Main layout */
.experience-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
  position: relative;
  z-index: 1;
}
.experience-row.reverse {
  flex-direction: row-reverse;
}

/* Icon style */
.icon-burst {
  font-size: 3.5rem;
  padding: 30px;
  border-radius: 50%;
  border: 4px dashed white;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.icon-burst:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Colors */
.icon-burst.blue {
  background: #2196f3;
}
.icon-burst.purple {
  background: #9c27b0;
}
.icon-burst.orange {
  background: #ff9800;
}
.icon-burst.green {
  background: #4caf50;
}

/* Text Block */
.exp-text {
  flex: 1;
  text-align: left;
}
.exp-text h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #222;
  font-weight: 700;
}
.exp-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .experience-row,
  .experience-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .exp-text {
    text-align: center;
  }

  .icon-burst {
    margin-bottom: 20px;
  }
}

/* Tournament Highlights */
.tuff-highlights {
  padding: 80px 5%;
  background-image: url("../assets/bg.jpeg");
  color: white;
  text-align: center;
}

.tuff-highlights h2 {
  font-size: 2.6rem;
  color: var(--orange);
  margin-bottom: 40px;
  font-weight: 800;
  text-transform: uppercase;
}

.highlight-line {
  margin: 20px auto;
  max-width: 800px;
  padding: 18px 24px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.highlight-line span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.highlight-line:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .highlight-line {
    font-size: 1rem;
    padding: 14px 18px;
  }
}

/* Tournament Dates */
.tuff-dates-venue {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.tuff-dates-venue .dates {
  flex: 1 1 50%;
  background: var(--orange);
  color: white;
  padding: 60px 30px;
}

.tuff-dates-venue .venue {
  flex: 1 1 50%;
  background: white;
  color: #222;
  padding: 60px 30px;
}

.tuff-dates-venue h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tuff-dates-venue p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Tournament Register */
.tuff-register-section {
  padding: 100px 5%;
  text-align: center;
  background-image: url("../assets/bg.jpeg");
  color: white;
}

.tuff-register-section h2 {
  font-size: 2.8rem;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.tuff-register-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.register-btn {
  background: var(--orange-hover);
  color: white;
  transition: background 0.3s ease;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 20px;
  width: 255px;
  height: 45px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.register-btn:hover {
  background: var(--orange);
}

/* Tournament Prizes */
.tuff-prizes-section {
  padding: 100px 5%;
  text-align: center;
  background: linear-gradient(135deg, #fefefe 0%, #f7f7f7 100%);
  color: #222;
  position: relative;
  overflow: hidden;
}

.tuff-prizes-section h2 {
  font-size: 2.8rem;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prize-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
}

/* Podium Style */
.podium-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.podium {
  width: 180px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 15px 15px 0 0;
  border-top: 5px solid var(--orange);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.podium:hover {
  transform: scale(1.03) translateY(-5px);
}

.podium h3 {
  color: var(--orange);
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.podium p {
  color: #333;
  font-size: 1rem;
}

.place {
  font-size: 2.8rem;
}

/* Podium Tiers */
.first {
  height: 230px;
  background: linear-gradient(145deg, #ffe7c1, #ffffff);
}

.second {
  height: 190px;
  background: linear-gradient(145deg, #d4e6ff, #ffffff);
}

.third {
  height: 170px;
  background: linear-gradient(145deg, #fce4ec, #ffffff);
}

/* Individual Awards */
.individual-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.award-card {
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.7);
  color: #222;
  border: 2px dashed var(--orange);
  border-radius: 40px;
  font-size: 1.05rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* Responsive */
@media (max-width: 768px) {
  .podium-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .podium {
    width: 80%;
    max-width: 300px;
  }
}

.visual-divider {
  position: relative;
  height: 100px;
  background: linear-gradient(135deg, var(--orange-hover) 60%, #fafafa 60%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (max-width: 600px) {
  .visual-divider {
    height: 80px;
  }
}

.tuff-rules-section {
  padding: 100px 5%;
  text-align: left;
}

.tuff-rules-section h2 {
  font-size: 2.8rem;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 800;
  text-align: center;
}

.rules-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 60px;
  text-align: center;
}

.rules-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}

.rules-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--rule-line-left);
  width: 3px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--orange),
    var(--orange) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.rule-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 30px;
}

.rule-number {
  position: absolute;
  top: 0;
  left: var(--rule-line-left);
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.rule-content {
  background: transparent;
}

.rule-content h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.rule-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .rule-item {
    padding-left: 50px;
  }

  .rule-content h3,
  .rule-content p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .tournament-hero p,
  .highlight-line span,
  .tuff-register-section p,
  .tuff-prizes-section p,
  .rules-subtitle,
  .exp-text p,
  .tuff-experience-section p,
  .tuff-dates-venue p,
  .tuff-rules-section p {
    font-size: 1rem;
  }

  .exp-text {
    text-align: center;
  }

  .tournament-hero h1 {
    font-size: 2rem;
  }
  .tuff-experience-section h2,
  .tuff-prizes-section h2,
  .tuff-highlights h2,
  .tuff-rules-section h2,
  .tuff-register-section h2 {
    font-size: 1.8rem;
  }

  .tuff-experience-section h2,
  .tuff-prizes-section h2,
  .tuff-highlights h2,
  .tuff-rules-section h2,
  .tuff-register-section h2 {
    font-size: 2.2rem;
  }


  .tuff-dates-venue h3,
  .exp-text h3,
  .tuff-rules-section h3 {
    font-size: 1.4rem;
  }

  .icon-burst {
    font-size: 2.2rem;
    padding: 35px;
    border-width: 3px;
  }

  .experience-row {
    gap: 24px;
  }
}
