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

body {
    background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

.profile-pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #00d2ff;
    margin-bottom: 15px;
    object-fit: cover;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.link-card {
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.link-card:hover {
    background-color: white;
    color: #1e1e2f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

footer {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.5;
}


.link-button {
    display: block;
    background-color: #3b3b58;
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-button.primary {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.link-button:hover {
    transform: scale(1.02);
    background-color: #4a4a6e;
}

/* Estilos para la sección de texto copiable */
.info-group {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-group h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.label {
    font-size: 0.75rem;
    color: #00d2ff;
    font-weight: bold;
    margin-bottom: 4px;
}

.value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    word-break: break-all;
    user-select: all;
}

.copy-hint {
    font-size: 0.7rem;
    opacity: 0.4;
    margin-top: 5px;
}