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

body {
    font-family: 'Orbitron', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background: #0d0515;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('../assets/images/background.png') center center / cover no-repeat;
    background-color: #0d0515;
}

.background-overlay {
    display: none;
}

/* Logo Section */
.logo-section {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
}

/* Links Section */
.links-section {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 20px;
    margin-top: 80px;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ping-circle {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.ping-circle::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: url('../assets/images/count-ms.png') center center / contain no-repeat;
    z-index: 2;
}

.ping-value {
    position: relative;
    z-index: 3;
    color: #c9a227;
    font-size: 20px;
    font-weight: 700;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 54px;
    background: url('../assets/images/link-button.png') center center / contain no-repeat;
    border: none;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.link-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.link-button:active {
    transform: scale(0.98);
}

/* Model Section */
.model-section {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.model-image {
    max-height: 60vh;
    width: auto;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-container {
        background: url('../assets/images/background-mb.png') center top / cover no-repeat;
        background-color: #0d0515;
    }

    .logo-section {
        padding: 15px 0;
    }

    .logo {
        max-width: 180px;
    }

    .links-section {
        margin-top: 20px;
        padding: 10px;
    }

    .links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 10px;
        max-width: 100%;
        padding: 0 10px;
    }

    .link-item {
        gap: 5px;
    }

    .ping-circle {
        width: 80px;
        height: 80px;
    }

    .ping-circle::before {
        width: 70px;
        height: 70px;
    }

    .ping-value {
        font-size: 11px;
    }

    .link-button {
        width: 90px;
        height: 32px;
        font-size: 11px;
    }
}

