    @font-face {
        font-family: 'iconfont';
        src: url('iconfont.ttf') format('truetype');
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        user-select: none;
    }

    html,
    body {
        width: 100%;
        height: 100%;
        background-color: #000;
        overflow: hidden;
        font-family: 'Segoe UI', sans-serif;
        color: white;
    }

    canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 20vh 10px;
        pointer-events: none;
    }

    .clickable-content {
        pointer-events: auto;
        display: inline-block;
    }

    .main-title {
        font-size: clamp(2em, 5vw, 3.4em);
        font-weight: 900;
        margin-bottom: 0.3em;
    }

    .subtext {
        font-size: clamp(1em, 2.5vw, 1.2em);
        margin-bottom: 20px;
        color: #eee;
    }

    .desc {
        font-size: clamp(0.95em, 2.3vw, 1.1em);
        color: #ccc;
        max-width: 720px;
        margin: 0 auto;
    }

    .desc a {
        color: #00bcd4;
        text-decoration: none;
    }

    .desc a:hover {
        text-decoration: underline;
    }

    img.extension-image {
        max-width: 550px;
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        margin-top: 30px;
    }

    .dg,
    .dg.ac {
        display: none !important;
    }

/* Nabız Noktası */
.heartbeat {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #00FF00;
    /* Yeşil başlangıç */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0.7);
    animation: pulse 1.5s infinite;
    margin: 0 auto 10px;
    transition: background-color 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    }

    70% {
        transform: scale(1.4);
        box-shadow: 0 0 0 10px rgba(255, 59, 59, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    }
}

/* EKG Dışı Sarıcı */
.ekg-wrapper {
    width: 100%;
    height: 30px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

/* EKG Çizgisi */
.ekg-line {
    width: 400%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: 0 0;
    opacity: 0.4;
    animation: none;
    transition: all 0.4s ease;
}

/* EKG Hareketi */
@keyframes ekg-scroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -100% 0;
    }
}

/* Sunucu Bilgisi */
.server-info {
    position: relative;
    z-index: 2;
    color: white;
    margin-top: 10px;
}

.server-info h3,
.server-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4em;
}

/* Server Kartı */
.server-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 220px;
    min-height: 180px;
    display: inline-block;
    margin: 10px;
    vertical-align: top;
    position: relative;
}


.server-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 767px) {
    .server-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 sütun */
        gap: 12px;
        padding: 12px;
        max-width: 95%;
        /* Kutular taşmasın */
    }

    .server-card {
        width: 100%;
    }

    .content {
    padding: 5vh 10px 10vh;
  }
}

.server-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    min-height: 180px;
}



.clear-button {
    background: #444;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: auto;
    z-index: 3;
}

.clear-button:hover {
    background: #666;
}
