* {
    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, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

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

.profile {
    margin-bottom: 30px;
}

.avatar {
    margin-bottom: 20px;
}

.avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.name {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.bio {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.link-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.link-button {
    display: block;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.link-button:active {
    transform: translateY(0);
}

.link-description {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.4;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    color: #ccc;
}

/* Page content styles for Terms and Privacy pages */
.page-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.page-content .last-updated {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.page-content section {
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 22px;
    color: #667eea;
    margin-bottom: 15px;
    margin-top: 25px;
}

.page-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #764ba2;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    .name {
        font-size: 24px;
    }

    .bio {
        font-size: 15px;
    }

    .link-button {
        padding: 12px 18px;
        font-size: 15px;
    }

    .page-content h1 {
        font-size: 26px;
    }

    .page-content h2 {
        font-size: 20px;
    }
}

