/* LOL Typography */
.lol-title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  background: linear-gradient(180deg, #f0e6d2 0%, #c89b3c 45%, #c8aa6e 50%, #c89b3c 55%, #f0e6d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 1px 0 rgba(0,0,0,0.5),
    0 2px 4px rgba(0,0,0,0.3),
    0 0 20px rgba(200,155,60,0.3);
}

.lol-subtitle {
  font-family: "Inter", sans-serif;
  color: #a09b8c;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

/* LOL Panels */
.lol-panel {
  background: 
    linear-gradient(180deg, rgba(1,10,19,0.8) 0%, rgba(7,20,30,0.9) 100%),
    radial-gradient(ellipse at top, rgba(200,155,60,0.05), transparent 70%);
  border: 1px solid;
  border-image: linear-gradient(180deg, #c89b3c 0%, #5c5b57 50%, #c89b3c 100%) 1;
  position: relative;
  overflow: hidden;
}

.lol-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c89b3c, transparent);
  opacity: 0.5;
}

.lol-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c89b3c, transparent);
  opacity: 0.5;
}

/* LOL Buttons */
.lol-btn {
  position: relative;
  padding: 14px 32px;
  background: linear-gradient(180deg, #1e2328 0%, #0c0e11 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(180deg, #c89b3c, #5c5b57, #c89b3c) 1;
  color: #f0e6d2;
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.lol-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200,155,60,0.3), transparent);
  transition: left 0.5s ease;
}

.lol-btn:hover::before {
  left: 100%;
}

.lol-btn:hover {
  background: linear-gradient(180deg, #1e2328 0%, #0a0e13 100%);
  color: #c89b3c;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,155,60,0.2);
}

/* VIP Section in LOL Style */
.lol-vip-section {
  background: linear-gradient(180deg, #010a13 0%, #0c1f2e 50%, #010a13 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lol-vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c89b3c' stroke-width='0.1' opacity='0.2'%3E%3Cpath d='M50 10 L60 40 L50 70 L40 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.lol-vip-title {
  font-size: 48px;
  margin-bottom: 16px;
  text-align: center;
}

.lol-vip-subtitle {
  text-align: center;
  margin-bottom: 48px;
  font-size: 18px;
  color: #cdbe91;
}

/* VIP Tiers Grid */
.lol-vip-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lol-tier-card {
  background: linear-gradient(180deg, rgba(1,10,19,0.9) 0%, rgba(7,20,30,0.9) 100%);
  border: 2px solid;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.lol-tier-card.bronze {
  border-image: linear-gradient(180deg, #b08d57, #89653a, #b08d57) 1;
}

.lol-tier-card.silver {
  border-image: linear-gradient(180deg, #c0c0c0, #808080, #c0c0c0) 1;
}

.lol-tier-card.gold {
  border-image: linear-gradient(180deg, #ffd700, #c89b3c, #ffd700) 1;
}

.lol-tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200,155,60,0.2);
}

.lol-tier-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  position: relative;
}

.lol-tier-name {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lol-tier-card.bronze .lol-tier-name {
  color: #b08d57;
}

.lol-tier-card.silver .lol-tier-name {
  color: #c0c0c0;
}

.lol-tier-card.gold .lol-tier-name {
  color: #ffd700;
}

.lol-tier-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.lol-tier-benefits li {
  padding: 8px 0;
  color: #a09b8c;
  font-size: 14px;
  position: relative;
}

.lol-tier-benefits li::before {
  content: '◆';
  color: #c89b3c;
  margin-right: 8px;
}

/* Tournament Section LOL Style */
.lol-tournament-section {
  padding: 80px 0;
  background: 
    radial-gradient(ellipse at center top, rgba(200,155,60,0.1), transparent 50%),
    linear-gradient(180deg, #0a0e13 0%, #0c1f2e 100%);
}

.lol-tournament-header {
  text-align: center;
  margin-bottom: 64px;
}

.lol-tournament-title {
  font-size: 56px;
  margin-bottom: 24px;
}

.lol-tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lol-tournament-card {
  background: linear-gradient(180deg, rgba(1,10,19,0.95) 0%, rgba(10,25,40,0.95) 100%);
  border: 1px solid #c89b3c;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lol-tournament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #c89b3c, transparent);
  animation: lol-shimmer 3s ease-in-out infinite;
}

@keyframes lol-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.lol-tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(200,155,60,0.3);
  border-color: #f0e6d2;
}

.lol-tournament-prize {
  font-size: 32px;
  font-weight: 900;
  color: #c89b3c;
  margin-bottom: 16px;
}

.lol-tournament-name {
  font-size: 20px;
  font-weight: 700;
  color: #f0e6d2;
  margin-bottom: 12px;
}

.lol-tournament-date {
  color: #5c5b57;
  font-size: 14px;
  margin-bottom: 24px;
}

.lol-tournament-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #c89b3c;
  color: #c89b3c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lol-tournament-btn:hover {
  background: #c89b3c;
  color: #0a0e13;
}

/* Responsible Gaming LOL Style */
.lol-responsible-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #010a13 0%, #0a0e13 100%);
  border-top: 2px solid #c89b3c;
  border-bottom: 2px solid #c89b3c;
}

.lol-responsible-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lol-responsible-title {
  font-size: 36px;
  margin-bottom: 24px;
}

.lol-responsible-text {
  color: #a09b8c;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.lol-responsible-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.lol-tool-card {
  padding: 24px;
  background: rgba(200,155,60,0.05);
  border: 1px solid rgba(200,155,60,0.2);
  transition: all 0.3s ease;
}

.lol-tool-card:hover {
  background: rgba(200,155,60,0.1);
  border-color: #c89b3c;
}

.lol-tool-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #c89b3c;
}

.lol-tool-name {
  font-weight: 700;
  color: #f0e6d2;
  margin-bottom: 8px;
}

.lol-tool-desc {
  font-size: 14px;
  color: #5c5b57;
}

/* Mobile Responsiveness for LOL Theme */
@media (max-width: 768px) {
  .lol-vip-tiers {
    grid-template-columns: 1fr;
  }
  
  .lol-vip-title {
    font-size: 36px;
  }
  
  .lol-tournament-title {
    font-size: 40px;
  }
  
  .lol-responsible-title {
    font-size: 28px;
  }
}