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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #FFF8DC 50%, #FFF8DC 75%, #FFF8DC 100%);
    min-height: 100vh;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-container {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px 0;
    border: 4px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.link-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.link-item {
    flex: 1;
    background: white;
    padding: 16px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.logo-link {
    text-decoration: none;
    transition: transform 0.2s;
}

.logo-link:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
    }
}
