body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #2c3e50;
}

h1 {
    color: #2c3e50;
    margin: 0;
    font-size: 2.5rem;
}

h2 {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin: 0.5rem 0 1.5rem;
}

.bio {
    margin: 1.5rem 0;
    line-height: 1.6;
    color: #34495e;
}

.platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.platforms a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s;
    margin: 0 10px;
}

.platforms a:hover {
    transform: translateY(-2px);
}

.website { background-color: #2c3e50; }
.youtube { background-color: #c4302b; }
.podcast { background-color: #8e44ad; }
.facebook { background-color: #3b5998; }
.instagram { background-color: #e1306c; }
.email { background-color: #ea4335; }
