body {
    background: linear-gradient(45deg, #0f2224, #1f3838, #13292e, #2c4950);
    background-size: 400% 400%;
    animation: gradientBG 30s linear infinite; /* Zamanlama fonksiyonunu linear yaptık */
    color: #fff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 20px;
}

/* Sekme Çubuğu */
.tab-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tab-btn {
    background: rgba(30, 30, 30, 0.7);
    color: #fff;
    padding: 16px 48px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: auto;
}

.button-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.matches-btn {
    background: rgba(30, 30, 30, 0.5);
    color: #fff;
    padding: 12px 36px;
    border-radius: 10px;
    cursor:default;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: auto;
}

.tab-btn.active {
    background: rgba(46, 204, 113, 0.3);
    border-color: rgba(46, 204, 113, 0.6);
}

.tab-btn:hover {
    background: rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.4);
}

.tab-btn.discord:hover {
background-color: #4752c4;
animation: discordShine 2s linear infinite;
}

.tab-btn.discord {
    background: #5865F2;
      background-color: rgb(88, 101, 242);
      background-position-x: 0%;
      background-position-y: 0%;
      background-image: none;
      background-size: auto;
    border: 2px solid #7289DA;
    position: relative;
    overflow: hidden;
    animation: discordPulse 2s infinite;
    padding: 12px 32px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-overflow: unset;
    background-image: linear-gradient( 110deg, transparent 0%, transparent 25%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.2) 55%, transparent 75%, transparent 100% );
    background-size: 200% 100%;
    background-position: -200% center;
    animation: discordShine 3s linear infinite;
  }

  @keyframes discordShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

#home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.hyperlink:hover {
    color: #03d2f7;
    text-decoration: underline;
}

.hyperlink {
    color: #03d2f7;
    text-decoration: underline;
  }

.tab-content {
    display: none;
    text-align: left;
    line-height: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: white;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    overflow: hidden;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 30, 30, 0.05);
    transition: background-color 0.3s ease;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  .video-container {
    position: relative;
    width: 100%;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
  }

  .faq-answer.active {
    max-height: 800px;
    padding: 15px;
    opacity: 1;
    transform: translateY(0);
  }

.tab-content.active {
    display: block;
}

@keyframes gradientBG {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

h1 {
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    font-size: 2em;
    font-weight: 600;
}

.info-card {
    text-align: center;
    color: #fff;
    margin: 10px auto 10px;
    padding: 15px 25px;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 rgba(46, 204, 113, 0);
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: greenPulse 4s infinite;
    line-height: 1.4;
}

@keyframes greenPulse {
    0% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(46, 204, 113, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

.bot-info-text {
    text-align: left;
    padding-left: 0px;
    margin-bottom: 0px;
    width:auto; 

    margin-top: 5px;
    font-size: 0.9em;
    font-weight: 400;
}

.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snow {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.7;
    animation: snowfall 10s linear infinite, drift 2s infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--drift));
    }
}

.bot-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    max-width: 1480px;
    align-items: center;
    margin: 0 auto;
    margin-top: 30px;
}

.bot-name {
    font-weight: bold;
    margin-left: 10px;
  }

.bot-card {
    background: rgba(30, 30, 30, 0.7);
    padding: 15px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.bot-card:hover {
    transform: translateY(-7px);
}

.bot-avatar {
    align-content: center;
    justify-content: left;
    display: flex;
    margin-bottom: 5px;
  }

.bot-avatar img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.bot-info {
    margin-top: 15px;
    text-align: center;
    
    text-align: center;
    padding-left: 0px;
    width:auto; 
    font-size: 1.2em;
    font-weight: 400;
}



.status-usable {
    background-color: #27ae60;
}

.status-badge {
    background-color: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.9em;
}

.copy-btn {
    background-color: #414141;
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.9em;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.status-copy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-btn:hover {
    background-color: #5a5a5a;
}

.status-usable {
    background-color: #2ecc71;
}

.status-not-usable {
    background-color: #e74c3c;
}

.toast-message {
    position: fixed;
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%);
    background-color: #27ae60; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-size: 1em; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
    z-index: 1000; 
    opacity: 0; 
    animation: fadeInOut 3s ease-in-out; 
}

.faq-list {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e7a;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  
}

.faq {
    display: block;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 40%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
  }

#faq-section {
        max-width: 100%;
        width: 800px;
    }

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px); 
    }
    10%, 90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0); 
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 1024px) {
    .tab-btn {
        font-size: 0.85em;
        padding: 15px 20px;
        width: 20%;
    }

    .matches-btn {
        padding: 12px 25px;
        font-size: 0.85em;
    }

    .copy-btn {
        padding: 5px 15px;
        font-size: 0.8em;
    }

    .tab-content {
        width: 100%;
    }

    h1 {
        font-size: 1.8em;
    }

    .bot-card {
        width: 35%;
        max-width: none;
    }

    .tab-content {
        width: 95%;
    }

    .info-card {
        font-size: 0.95em;
    }

    .status-copy-container {
        justify-content: flex;
    }

    .bot-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .tab-btn {
        font-size: 0.8em;
        padding: 15px 20px;
        width: 25%;
    }

    .matches-btn {
        padding: 12px 20px;
        font-size: 0.8em;
    }

    .copy-btn {
        padding: 5px 15px; 
        font-size: 0.9em;
        margin-left: 10px; 
    }

    .tab-content {
        width: 100%;
    }

    h1 {
        font-size: 1.5em;
    }

    .bot-card {
        width: 90%; 
        max-width: none;
    }

    .tab-content {
        width: 100%;
    }

    .info-card {
        font-size: 0.9em;
    }

    .status-copy-container {
        justify-content: flex; 
    }

    .bot-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .bot-card {
        max-width: none;
        min-width: 272px;
    }
}

@media (max-width: 480px) {
    .tab-bar {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9em;
    }

    .matches-btn {
        width: 100%;
    }

    .copy-btn {
        width: auto;
        padding: 5px 10px; 
        font-size: 0.9em;
        height: 32px; 
        margin-left: 10px;
    }

    .tab-content {
        width: 100%;
    }

    .info-card {
        padding: 10px;
    }

    .bot-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .bot-card {
        width: 100%; 
    }
}

