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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brand {
    text-align: center;
    margin-bottom: 22px;
}

.brand-logo {
    width: 98px;
    height: 98px;
    object-fit: cover;
    border-radius: 18px;
    margin: 0 auto 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: white;
}

/* Fallback if you don't have a logo image yet */
.brand-logo-fallback {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.brand-name {
    font-size: 26px;
    font-weight: 800;
    color: #2d3748;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
}

.brand-tagline {
    font-size: 14px;
    color: #718096;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
}


.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: flext-start;
    gap: 12px;
    padding: 16px 24px;
    padding-left: 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}



.icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    fill: currentColor;
}


.instagram {
    color: #E4405F;
}

.facebook {
    color: #1877F2;
}

.tiktok {
    color: #000000;
}

.website {
    color: #667eea;
}

.whatsapp {
    color: #25D366;
}

.email {
    color: #D44638;
}

.location {
    color: #EA4335;
}

.google {
    color: #F4B400;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .link-btn {
        font-size: 15px;
        padding: 14px 20px;
    }
}