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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0E7C7E 0%, #1A9B9E 50%, #26B5B8 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-container {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

.main-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.main-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
}

.name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.action-buttons {
    margin-bottom: 1.5rem;
}

.action-btn {
    width: 100%;
    background: white;
    color: #0E7C7E;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.spreadly-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.spreadly-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.spreadly-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.secondary-buttons {
    margin-bottom: 1.5rem;
}

.secondary-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.feedback-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.feedback-title {
    color: white;
    font-weight: 500;
}

.feedback-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feedback-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer {
    text-align: center;
    margin-top: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.icon-small {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* Responsive Design */
@media (min-width: 768px) {
    .card-container {
        max-width: 32rem;
    }
    
    .main-card {
        padding: 2rem;
    }
    
    .name {
        font-size: 1.75rem;
    }
    
    .title {
        font-size: 1rem;
    }
    
    .spreadly-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .card-container {
        max-width: 36rem;
    }
    
    .main-card {
        padding: 2.5rem;
    }
    
    .avatar {
        width: 7rem;
        height: 7rem;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-btn {
        padding: 0.75rem;
    }
}