* {
    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, #1a2332 0%, #1e3a5f 50%, #2d4a5a 100%);
    min-height: 100vh;
    padding: 20px;
    color: #fff;
}

.container {
    max-width: 680px;
    margin: 0 auto;
}

.profile {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    position: relative;
    max-width: 300px;
    margin: 0 auto 20px;
}

.profile-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

h1 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.crm {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.stars {
    color: #fbbf24;
}

.reviews {
    color: rgba(255, 255, 255, 0.7);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.link-card.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.link-card.featured.highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: 3px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transform: scale(1.02);
}

.link-card.featured.highlight:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
}

.link-card.featured.highlight .link-icon {
    background: rgba(255, 255, 255, 0.3);
    font-size: 28px;
}

.link-card.featured.highlight .link-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.event-date {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.event-status {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
}

.link-badge.pulse {
    animation: pulse 2s infinite;
    font-weight: 600;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.link-card.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.link-card.featured .link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.link-card.featured .link-badge {
    background: rgba(255, 255, 255, 0.25);
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.link-card.primary .link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-content p {
    font-size: 13px;
    opacity: 0.7;
}

.link-badge {
    background: rgba(0, 0, 0, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.link-card.primary .link-badge {
    background: rgba(255, 255, 255, 0.25);
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.made-with {
    margin-top: 8px;
    font-size: 12px;
}

@media (max-width: 640px) {
    body {
        padding: 16px;
    }

    .link-card {
        padding: 16px;
    }

    .link-badge {
        display: none;
    }
}