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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #7dd3fc 0%, #f97316 50%, #a855f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.header {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.profile h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #f97316, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #f97316, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
    background: linear-gradient(45deg, #ec4899, #a855f7);
    border-color: rgba(255, 255, 255, 0.4);
}

.link-button .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.link-button .text {
    font-size: 1.1rem;
    font-weight: 500;
}

footer {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 1.5rem;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .profile h1 {
        font-size: 1.5rem;
    }
    
    .link-button {
        padding: 0.8rem 1rem;
    }
    
    .link-button .text {
        font-size: 1rem;
    }
}