* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

#logo {
    max-width: 300px;
    padding: 10px 20px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 10px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to right, #4b6cb7, #182848);
    color: white;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.links-container {
    padding: 30px 20px;
}

.link-item {
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.link-item:nth-child(1) {
    animation-delay: 0.2s;
}

.link-item:nth-child(2) {
    animation-delay: 0.3s;
}

.link-item:nth-child(3) {
    animation-delay: 0.4s;
}

.link-item:nth-child(4) {
    animation-delay: 0.5s;
}

.link-item:nth-child(5) {
    animation-delay: 0.6s;
}

.link-item:nth-child(6) {
    animation-delay: 0.7s;
}

.link-item:nth-child(7) {
    animation-delay: 0.8s;
}

.link-item:nth-child(8) {
    animation-delay: 0.9s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.link-content {
    padding: 20px;
    flex-grow: 1;
}

.link-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.link-content p {
    color: #666;
    font-size: 0.9rem;
}

.link-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    align-items: center;
}

/* Specific colors for each platform */
.website .icon {
    background-color: #4b6cb7;
}

.telegram-channel .icon {
    background-color: #0088cc;
}

.telegram-chatbot .icon {
    background-color: #0088cc;
}

.linkedin .icon {
    background-color: #0077b5;
}

.facebook .icon {
    background-color: #3b5998;
}

.twitter .icon {
    background-color: #1da1f2;
}

.youtube .icon {
    background-color: #ff0000;
}

.discord .icon {
    background-color: #7289da;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    .link-item {
        flex-direction: column;
        text-align: center;
    }

    .icon {
        width: 100%;
        height: 60px;
    }

    .link-content {
        padding: 15px;
    }

    .link-content h3 {
        font-size: 1.2rem;
    }
}