.discord-widget-iframe {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1001;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 350px;
  height: 500px;
}

@media screen and (max-width: 1000px) {
  .discord-widget-iframe {
    display: none; 
  }

  html > body > .body {
    right: 0px;
  }
}

.body-tabs .discord-help-link {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
    margin-left: 1.5rem;
    flex-grow: 1;
}

.body-tabs .discord-help-link a {
    font-size: 11px;
    color: #ffffff;
    text-transform: none;
    font-weight: bold;
    opacity: 1;
    background-color: rgba(52, 52, 52);
    border: 1px solid rgba(42, 41, 41);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.body-tabs .discord-help-link a i {
    color: #fff;
    font-size: 14px;
    margin-right: 8px;
}

.footer-gmt-pro {
    background-color: #1a1a1a;
    padding: 25px 20px 25px;
    color: #e0e0e0;
    font-family: 'Poppins', Arial, sans-serif;
    border-top: 3px solid #00afff;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    margin: 0;
    font-size: 15px;
    color: #b3b3b3;
    line-height: 1.6;
}

.footer-column.wiki-list-column {
    /* Görsel denge için diğer sütunlarla uyumlu bırakıldı */
}

.wiki-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiki-list li {
    margin-bottom: 10px;
}

.wiki-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #bfcbd6; /* hafif açık metin */
    font-size: 15px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.wiki-list a:hover {
    color: #00afff; /* footer üst sınır renginize uyumlu */
    transform: translateX(4px);
}

.wiki-list a i {
    font-size: 18px;
    width: 22px;
    text-align: center;
    color: #c7c7c7;
}

.wiki-list .wiki-icon {
  width: 20px;  /* Görsel genişliği */
  height: 20px; /* Görsel yüksekliği */
  object-fit: contain; /* Görselin orantısını korur */
}

/* Küçük ekranlarda ortalama hizalama */
@media (max-width: 768px) {
    .footer-column.wiki-list-column {
        text-align: center;
    }
    .wiki-list a {
        justify-content: center;
    }
}

.developer-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
}

.developer-profile:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.developer-name {
    font-size: 16px;
    font-weight: 500;
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block; 
}

.shazzam-name {
    background-image: linear-gradient(to right, #6a0dad, #4b2a9a, #3c56b0, #2a9d8f);
    animation: rainbow-flow-right 5s linear infinite;
    -webkit-mask-image: 
        radial-gradient(circle at 50% -15%, transparent 25px, black 26px),
        radial-gradient(circle at 50% 115%, black 25px, transparent 26px);
    mask-image: 
        radial-gradient(circle at 50% -15%, transparent 25px, black 26px),
        radial-gradient(circle at 50% 115%, black 25px, transparent 26px);
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: 80px 100%;
    mask-size: 80px 100%;
}

.higamato-name {
    background-image: linear-gradient(to left, #ff7eb9, #ff65a3, #7afcff, #feff9c, #fff740, #ff7eb9);
    animation: rainbow-flow-left 8s linear infinite;
}

@keyframes rainbow-flow-right {
    from {
        background-position: 0% center;
    }
    to {
        background-position: -200% center;
    }
}

@keyframes rainbow-flow-left {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 200% center;
    }
}

.developer-links {
    display: flex;
    gap: 12px;
}

.developer-links a {
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}

.developer-links a:hover {
    color: #0d94e4;
    transform: scale(1.1);
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.developer-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #444;
}

.discord-button-pro {
    background-color: #5865F2;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    box-sizing: border-box; 
}

.discord-button-pro:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.footer-copyright {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-column {
        text-align: center;
    }
    .developer-profile, .social-icons {
        justify-content: center;
    }
}

.discord-banner-link {
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.discord-banner-link:hover {
    transform: translateY(-2px);
}

.discord-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.85);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes fadeOutScaleDown {
    to {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
}

.popup-content {
    background-color: #2a2d2f;
    padding: 25px 35px;
    border-radius: 10px;
    border-top: 4px solid red;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
    position: relative;
    color: #e0e0e0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    transform: scale(0.9);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup-overlay.visible .popup-content {
    opacity: 1;
    transform: scale(1);
}

.popup-overlay.closing .popup-content {
    animation: fadeOutScaleDown 0.3s ease-in forwards;
}

.popup-icon {
    font-size: 48px;
    color: red;
    margin-bottom: 15px;
}

.popup-title {
    font-family: 'Heebo', sans-serif;
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.popup-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #c5c5c5;
}

.popup-author {
    font-size: 14px;
    font-style: italic;
    color: #999;
    margin-top: 25px;
}

.popup-creator-name {
    color: #0099ff;
    font-weight: bold;
}

.popup-discord-btn {
    display: inline-block;
    background-color: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup-discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.popup-discord-btn i {
    margin-right: 8px;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.popup-close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.popup-disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 25px;
    line-height: 1.5;
    font-style: italic;
}

.popup-dont-show-again {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    font-size: 14px;
    color: #ccc;
}

.popup-dont-show-again input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
    width: 16px; 
    height: 16px;
    accent-color: red;
}

.popup-dont-show-again label {
    cursor: pointer;
}

#pagelinks {
  display: none !important;
}