* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: linear-gradient(180deg, #e0df76 0%, #7f8103 100%);
}

.card-container {
    width: min(520px, 100%);
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
    padding: 28px 24px 32px;
    margin: 0 auto;
}

.profile {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 24px;
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

h1 {
    margin-top: 0;
    font-size: 2rem;
    text-align: center;
    color: #222;
}

.text {
    text-align: center;
    font-size: 1rem;
    color: #4b4b4b;
    margin-top: 8px;
    margin-bottom: 28px;
}

.fast-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.icon-links {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    color: #1A3EAD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.icon-links:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.icon-links i {
    font-size: 1.4rem;
}

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

.links-button {
    background: #fff;
    color: #222;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.links-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.links-button i {
    font-size: 1.5rem;
    min-width: 36px;
    text-align: center;
}

.btn-text {
    flex: 1;
}

.btn-text b {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.btn-text span {
    display: block;
    font-size: 0.92rem;
    color: #666;
    line-height: 1.4;
}

.arrow {
    color: #999;
    font-size: 1.2rem;
}

.about {
    text-align: center;
    width: 100%;
    padding: 20px 18px;
    margin: 28px auto 0;
    background: #fafafa;
    border-radius: 22px;
}

.about h1 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #222;
}

.about p {
    line-height: 1.75;
    color: #4d4d4d;
}

.fa-facebook { color: #1877F2; }
.fa-instagram { color: #E4405F; }
.fa-tiktok { color: #000000; }
.fa-map { color: #EA4335; }
.fa-spray-can-sparkles { color: #ff4aa3; }

@media (max-width: 768px) {
    body {
        padding: 18px;
    }

    .card-container {
        padding: 24px 18px 28px;
    }

    h1 {
        font-size: 1.85rem;
    }

    .text {
        font-size: 0.98rem;
    }

    .fast-links {
        gap: 12px;
    }

    .icon-links {
        width: 52px;
        height: 52px;
    }

    .links-button {
        padding: 14px 16px;
        gap: 12px;
    }

    .links-button i {
        font-size: 1.35rem;
        min-width: 34px;
    }

    .about {
        padding: 18px 16px;
    }
}

@media (max-width: 560px) {
    body {
        padding: 14px;
    }

    .card-container {
        padding: 20px 14px 22px;
    }

    h1 {
        font-size: 1.65rem;
    }

    .text {
        font-size: 0.95rem;
    }

    .fast-links {
        gap: 10px;
    }

    .icon-links {
        width: 48px;
        height: 48px;
    }

    .links-button {
        padding: 12px 14px;
        gap: 10px;
    }

    .links-button i {
        font-size: 1.2rem;
        min-width: 32px;
    }

    .about {
        padding: 16px 14px;
    }
}

@media (max-width: 420px) {
    .fast-links {
        gap: 8px;
    }

    .links-button {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .links-button i {
        margin-right: 0;
    }

    .arrow {
        align-self: flex-end;
    }

    .about {
        padding: 14px 12px;
    }
}
