* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #cccccc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}



.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.header {
    margin-bottom: 80px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid #333;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 400;
}



.sections-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.section {
    width: 100%;
    text-align: center;
}

.section h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #cccccc;
    text-align: center;
}

.links-horizontal {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    justify-content: center;
}

.links-horizontal::-webkit-scrollbar {
    height: 6px;
}

.links-horizontal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.links-horizontal::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.links-horizontal::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.link-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #cccccc;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.link-card:hover {
    transform: translateY(-4px);
    background: #1f1f1f;
    border-color: #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.link-image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #1f1f1f;
    border-radius: 6px;
    overflow: hidden;
    padding: 8px;
}

.link-image img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
}

.link-info {
    text-align: center;
}

.link-info h3 {
    font-weight: 500;
    font-size: 1rem;
    color: #aaaaaa;
    margin: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .link-card {
        min-width: 180px;
        max-width: 180px;
        padding: 18px;
    }

    .sections-container {
        gap: 40px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .link-card {
        min-width: 160px;
        max-width: 160px;
        padding: 16px;
    }

    .links-horizontal {
        gap: 15px;
    }

    .header {
        margin-bottom: 60px;
    }
}