@media (max-width: 600px) {
  .menu-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.guild-form select {
  width: 100%;
  padding: 10px;
  background: #0d0d0d;
  border: 1px solid #775522;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #ffd700;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
}


.guild-form input,
.guild-form textarea {
  width: 95%;
  padding: 10px;
  background: #0d0d0d;
  border: 1px solid #775522;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #ffd700;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
}

.site-footer {
  background: linear-gradient(145deg, #1a0e00, #2b1b08);
  color: #ffd700;
  text-align: center;
  padding: 0px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  border-top: 2px solid #d4af37;
  box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.2);
  text-shadow: 1px 1px 2px black;
  width: 100%;
}


    .avatar {
        display: none;
        width: 150px;
    }

  .welcome-block {
    padding: 16px;
  }

  .welcome-block h1 {
    font-size: 1.5rem;
  }

  .welcome-block p {
    font-size: 0.95rem;
  }


}



/* Шрифт FrizQuadrata — только для латиницы */
@font-face {
  font-family: 'FrizHybrid';
  src: url('/fonts/FRIZQUAD.TTF') format('truetype');
  unicode-range: U+0000-00FF; /* латиница, цифры, спецсимволы */
}

/* Основной стиль */
.wow-text {
  font-family: 'FrizHybrid', sans-serif;
  font-size: 16px;
  color: #FFD100;
  text-shadow: 1px 1px 0 #000;
}

.ads {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(145deg, #1a0e00, #2b1b08);
  border-bottom: 2px solid #d4af37;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
  z-index: 1000;
    padding: 8px 0 8px 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-links a {
  position: relative;
  color: #ffd700;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 15px;
  text-shadow: 1px 1px 2px black;
  padding: 6px 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-block;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  z-index: 0;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.nav-links a span {
  position: relative;
  z-index: 1;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-right: auto;
  padding: 4px;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #ffd700;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .top-nav {
    padding: 6px 0px;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #1a0e00;
    width: 85%;
    padding: 12px 16px;
    border-top: 2px solid #d4af37;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    animation: slideDown 0.3s ease forwards;
  }

  .nav-links.show {
    display: flex;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .burger {
    margin-left: 5px;
    display: flex;
  }

  .nav-links a {
    width: 85%;
    margin: 8px 0;
    font-size: 17px;
    text-align: left;
  }
}



a {
  color: #dd5226;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #ffd700;
}



.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px auto;
}

.menu-top {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px auto;
}

.menu-button {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3); /* полупрозрачный черный фон */
  padding: 10px;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-button:hover,
.menu-button.active {
  background-color: rgba(0, 0, 0, 0.6); /* менее прозрачный фон */
  transform: scale(1.05);
}

.menu-button img {
 
  height: 120px;
  object-fit: contain;
  display: block;
}


.guild-link-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #000000ba;
    box-shadow: 0 2px 11px #1b99fe22;
    transition: filter 0.13s, box-shadow 0.13s, transform .12s;
    padding: 0;
    border: none;
    font-size: 0;
}

.guild-link-icon:hover {
    filter: brightness(1.13) saturate(1.15);
    box-shadow: 0 4px 24px #1b99fe38;
    transform: translateY(-2px) scale(1.08);
}


.guild-message-a {
font-family: cursive;
    background: #3449ae;
    border-radius: 8px;
    padding: 10px 11px 10px 11px;
    margin: 0 0 10px 0;
    font-size: .75rem;
    color: #e3e3e3;
    font-weight: 100;
    line-height: 1.5;
    box-shadow: 0 1px 6px #181b2340;
    white-space: pre-line;
    overflow-x: auto;
    max-height: 180px;
    min-height: 32px;
    margin-bottom: 13px;

}


.guild-message-h {
font-family: cursive;
    background: #8b1d1d;
    border-radius: 8px;
    padding: 10px 11px 10px 11px;
    margin: 0 0 10px 0;
    font-size: .75rem;
    color: #e3e3e3;
    font-weight: 100;
    line-height: 1.5;
    box-shadow: 0 1px 6px #181b2340;
    white-space: pre-line;
    overflow-x: auto;
    max-height: 180px;
    min-height: 32px;
    margin-bottom: 13px;

}

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

.guild-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}



.guild-card.horde {
    max-height: 500px;
  background: rgba(150, 0, 0, 0.6);
  border-left: 4px solid #c41c1c;
    background-image: url('/images/hordebg2.png');
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: top right;
  background-blend-mode: overlay;
    text-align: left;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  width: 260px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.guild-card.horde:hover {
      border: 2px solid rgb(255 7 7 / 56%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.guild-card.alliance {
  background: rgba(0, 50, 150, 0.6);
  border-left: 4px solid #0070dd;
  background-image: url('/images/alliancebg2.png');
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: top right;
  background-blend-mode: overlay;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  width: 260px;
  max-height: 500px;
  color: #fff;
  text-align: left; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.guild-card.alliance:hover {
      border: 2px solid rgb(0 138 255 / 56%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.guild-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.guild-card .green {
  color: #00ff99;
}

.guild-card .icons {
    display: flex;
    gap: 19px;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: -2px;
}

.guild-card .icons img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.guild-card .icons img:hover {
  opacity: 1;
}




.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}



.linear-horizontal-progress-widget.color-scheme-ukraine .background {
    background: linear-gradient(97deg, #cf6110 0%, #ef5a21 97.52%);
}
    
    @font-face {
    font-family: 'Warcraft';
    src: url('/Warcraft.ttf') format('truetype');
}

body {
    font-family: 'Warcraft', sans-serif;
}
    
    #clickCount {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: auto;
  font-family: 'FrizHybrid', sans-serif;

  background-image: url('https://images.blz-contentstack.com/v3/assets/blt3452e3b114fab0cd/blt7d2ad8c6022f7c0f/6527baa4562cbc3925007ffd/Overview_Desktop.jpg');
  background-size: cover;
  background-attachment: fixed; /* 🧷 не прокручивается */
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #000;
}

        
.container {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto 50px auto;
  padding: 0 20px; /* немного отступов по бокам */
  text-align: center;
}

        
        .avatar {
padding-top: 20px;
    width: 200px;
        }
        .social-links {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .social-links li {
            display: block;
        }
        .social-links li a {
font-size: 1.08rem;
    line-height: 1.5;
    font-weight: 400;
    background: rgb(0 0 0 / 50%);
    color: #f7b10a;
    min-width: 180px;
    text-transform: uppercase;
    transition: background .2s,color .2s;
    display: block;
    border: 1px solid #e47f24;
    padding: 15px 0;
    text-decoration: none;
        }
        .social-links li a:hover {
            background-color: #e47f24;
        }
        .description {
            color: white;
            margin-top: -20px;
            font-size: 18px;
        }

        /* Адаптивность для мобильных устройств */
        @media screen and (max-width: 480px) {
            .social-links li a {
                padding: 12px;
                font-size: 14px;
                margin: 0px 15px 0px 15px;
            }
            .avatar {
                width: 150px;
                
            }
        }
        
        
        
.open-form-btn {
  background: linear-gradient(145deg, #2e1a00, #5a3800);
  color: #ffd700;
  font-weight: bold;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  border: 2px solid #d4af37;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  margin: 20px 0;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px black;
}

.open-form-btn:hover {
  background: linear-gradient(145deg, #5a3800, #2e1a00);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
  transform: scale(1.05);
}


.form-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.guild-form {
  background: linear-gradient(145deg, #1a0e00, #2b1b08);
  color: #ffd700;
  padding: 24px;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  border: 2px solid #d4af37;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  text-shadow: 1px 1px 2px black;
}

.guild-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffcc66;
}


.guild-form select {
  width: 100%;
  padding: 10px;
  background: #0d0d0d;
  border: 1px solid #775522;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #ffd700;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
}


.guild-form input,
.guild-form textarea {
  width: 95%;
  padding: 10px;
  background: #0d0d0d;
  border: 1px solid #775522;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #ffd700;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
}

.guild-form input::placeholder,
.guild-form textarea::placeholder {
  color: #aaa066;
}

.guild-form button {
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid #d4af37;
  background: linear-gradient(145deg, #4a2a00, #805100);
  color: #ffd700;
  cursor: pointer;
  font-weight: bold;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.guild-form button:hover {
  background: linear-gradient(145deg, #805100, #4a2a00);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  transform: scale(1.05);
}

        
        
        
.site-footer {
    height: 150px;
    background-image: url(https://blz-contentstack-images.akamaized.net/v3/assets/blt3452e3b114fab0cd/blt68767eb2e400c81d/6527ba4ba954472098f3f1f1/Cloud_Desktop.jpg);
    background-repeat: no-repeat;
    background-size: 2580px;
    background-position: center;
    color: #ffd700;
    text-align: center;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    border-top: 2px solid #d4af37;
    box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.2);
    text-shadow: 1px 1px 2px black;
    width: 100%;
}



.divider {
  background-image: url(https://blz-contentstack-images.akamaized.net/v3/assets/blt3452e3b114fab0cd/bltf8ca7b90e058841f/divider.png?format=webply&quality=70);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; 
  height: 64px;
  width: 100%;
}


.divider-top {
    background-image: url(https://blz-contentstack-images.akamaized.net/v3/assets/blt3452e3b114fab0cd/blt661008ac61a51d63/653018bbaf5c2fb7aca0cb0e/Border_1.png?format=webply&quality=70);
    height: 72px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    margin-top: -50px;
}


.welcome-block {
  background: linear-gradient(145deg, #1a0e00, #2b1b08);
  color: #ffd700;
  border-radius: 16px;
  padding: 24px;
  margin: 40px auto;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  text-align: center;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 2px black;

  max-width: 1420px;
  width: 100%;           
  box-sizing: border-box;
}

.welcome-block h1 {
  font-size: 2rem;       
  margin-bottom: 16px;
  color: #ffcc66;
}

.welcome-block p {
  font-size: 1rem;       
  line-height: 1.6;
}


.news-section {
    display: flex;
    width: 1420px;
  margin-top: 40px;
  background-color: #1a1a1a;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
}

.news-section h2 {
  color: #f9d6b1;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.news-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
  background-color: #222;
  padding: 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.news-item:hover {
  background-color: #2a2a2a;
}

.news-item img {
  width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.news-item-content {
  flex: 1;
  text-align: left;
}

.news-item-content a {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.news-item-content a:hover {
  text-decoration: underline;
}

.news-item-content small {
  color: #888;
}

.news-item-content p {
    color: #ffd700;
    text-shadow: 1px 1px 2px black;
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.5;
}

.wowlinks {
    width: 30%;
    padding: 20px;
    color: #ffd700;
  }

.wowlinks2 {
    width: 50%;
    padding: 20px;
    color: #ffd700;
}

.wowlinks3 {
    width: 24%;
    padding: 20px;
    color: #ffd700;
}
  .wowlinks h3 {
      letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .wowlink-item {
      text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.05);
    margin-bottom: 10px;
    transition: background 0.3s ease;
  }

  .wowlink-item:hover {
    background: rgba(255, 215, 0, 0.15);
  }

  .wowlink-item img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
  }

  .wowlink-item a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
  }

  .wowlink-desc {
    font-size: 13px;
    color: #ccc;
  }

@media (max-width: 600px) {
.news-item img {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
}
      
 .news-item {
    display: block;
 }
 
 .news-section {
 display: block;
    width: 100%;
    padding: 0px;
 
}

.wowlinks {
    width: 90%;
 
  }
  
.news-list {

  padding: 10px;

}  

.container {
  max-width: 100%;
  width: 100%;
  padding: 0px; 

}

  .welcome-block h1 {
    font-size: 1.5rem;
  }
       
}   

 

 

.nickname-generator {
    display: flex;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 20px;
  color: #ffd700;
  max-width: 1420px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
.nickname-generator select, .nickname-generator button {
  padding: 10px;
  margin: 8px 5px;
  border-radius: 6px;
  border: 1px solid #d4af37;
  background: #1a0e00;
  color: #ffd700;
  font-weight: bold;
  cursor: pointer;
}
.nickname-generator button:hover {
  background: #2b1b08;
  text-shadow: 0 0 5px #ffd700;
}
#nickname-result {
  margin-top: 16px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nickname-icon {
  width: 32px;
  height: 32px;
}

.nickname-generator-block {
    width: 70%;
    padding: 20px;
}

.generator-description {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  margin: 40px auto 20px;
  max-width: 700px;
  text-align: center;
  color: #ffd700;
  font-family: 'Georgia', serif;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.generator-description h2 {
  margin-bottom: 12px;
  font-size: 24px;
  text-shadow: 1px 1px 2px black;
}

.generator-description p {
  font-size: 16px;
  line-height: 1.5;
}

 @media (max-width: 600px) {
    .nickname-generator-block {
    width: 100%;
    padding: 0;
}

.nickname-generator {
    display: block;

}
}



  .raid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin: 40px auto;
    max-width: 1300px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    box-shadow: 0 0 10px #000;
  }

  .class-palette {
      color: #FFD100; 
  text-shadow: 1px 1px 0 #000;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .class-block {
    background: #111;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 8px;
    width: 200px;
  }

  .class-block h4 {
    margin: 0 0 10px;
    font-size: 16px;
    text-align: center;
    color: #ffd700;
  }

  .spec-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .class-spec {
    background: #1a1a1a;
    border: 1px solid #555;
    padding: 4px 6px;
    border-radius: 6px;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
  }

  .class-spec img {
    margin-left: 6px;
    width: 20px;
    height: 20px;
  }

  .groups {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .class-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 1px 0;
  }

  .class-spec input.player-name {
      color: #FFD100; /* классический жёлтый WoW */
  text-shadow: 1px 1px 0 #000;
    background: #111;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    width: 100px;
  }

  .class-spec img {
    flex-shrink: 0;
  }

  .group {
    background-image: url(https://images.blz-contentstack.com/v3/assets/blt3452e3b114fab0cd/blt7d2ad8c6022f7c0f/6527baa4562cbc3925007ffd/Overview_Desktop.jpg);
    border: 2px solid #6b6b6b;
    width: 220px;
    height: 260px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgb(188 188 188 / 30%);
    display: flex
;
    flex-direction: column;
    gap: 5px;
  }

  .group h4 {
    text-align: center;
    color: #ffffff;
    margin: 0 0 8px;
  }

  .group .class-spec {
    cursor: pointer;
    padding: 4px 6px;
    user-select: none;
    font-size: 13px;
  }

  .buffs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
  }

  .buff {
      margin: 2px;
font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px;
    border-radius: 6px;
    background: #222;
    border: 1px solid #777;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .buff.active {
    background: #00aaff;
    color: #fff;
    border-color: #00d5ff;
    opacity: 1;
    box-shadow: 0 0 6px #00e1ff;
  }

  .buff img {
    width: 20px;
    height: 20px;
  }
  
  .dual-buffs {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
}

.buff-column {
  flex: 1;
}

.buff-column h4 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 10px;
      margin-top: -15px;
}

.buff-list {
  display: ruby;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}


.group-buffs {
  display: flex;
  gap: 2px;
background: #54524d96;
  justify-content: center;
  min-height: 30px;
}
.group-buffs .buff {
  opacity: 1;
  background: #005577;
  border-color: #00aaff;
  color: white;
  font-size: 11px;
  padding: 2px;
}
.group-buffs .buff img {
  width: 20px;
  height: 20px;
}

  .debuff-table-container {
    max-width: 1300px;
    margin: 40px auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px #000;
    color: #fff;
    font-size: 16px;
  }

  .debuff-table-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
  }

  .debuff-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
  }

  .debuff-table th,
  .debuff-table td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
    vertical-align: middle;
  }

  .debuff-table th {
    background: #333;
    color: #ffd700;
    text-transform: uppercase;
  }

  .debuff-table img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;
  }

/* Общие стили для инфо-секций */
.wow-info, .wow-tips {
    display: flex;
text-align: left;
    max-width: 1420px;
  margin: 40px auto;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #f1e3c7;
  line-height: 1.6;
  font-size: 16px;
}

/* Заголовки */
.wow-info h2, .wow-tips h2 {
  font-size: 1.8rem;
  color: #f9d6b1;
  margin-bottom: 15px;
}

/* Списки */
.wow-info ul, .wow-tips ol {
  margin: 15px 0 15px 25px;
  padding: 0;
}
.wow-info ul li,
.wow-tips ol li {
  margin-bottom: 10px;
}

/* Нумерованный список */
.wow-tips ol {
  list-style: decimal;
}
.guild-section {
text-align: left;
    max-width: 1420px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f1e3c7;
    display: flex;
}

.main {
width:70%;
}


/* Для небольших экранов */
@media (max-width: 768px) {
  .wow-info, .wow-tips {
    padding: 15px;
    font-size: 15px;
    display: grid;
  }

  .wow-info h2, .wow-tips h2 {
    font-size: 1.4rem;
  }
  
.guild-section {
    display: block;
}  

.wowlinks2 {
    width: 85%;

}  

.wowlinks3 {
    width: 85%;

} 

.main {
width:100%;
}

}

    