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

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #e3f2fd 0%, #90caf9 50%, #64b5f6 100%);
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

header .logo {
    width: 150px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

header h1 {
    font-size: 2rem;
    color: #1565c0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

header .description {
    font-size: 0.95rem;
    color: #1976d2;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
}

main {
    flex: 1;
}

.podcast-section {
    margin-bottom: 40px;
}

.podcast-section h2 {
    font-size: 1.5rem;
    color: #1565c0;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.podcast-embed {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.podcast-embed iframe {
    border-radius: 12px;
    display: block;
}

.podcast-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.podcast-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #1565c0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.podcast-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.podcast-link i {
    font-size: 1.5rem;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #1565c0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

footer {
    margin-top: auto;
    padding-top: 30px;
    color: #1565c0;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 8px;
    font-weight: 500;
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(21, 101, 192, 0.2);
}

.social-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1565c0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.person-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.person-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.person-links .icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.person-links .icons a {
    color: #1565c0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.person-links .icons a:hover {
    transform: translateY(-3px) scale(1.1);
    color: #0d47a1;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(21, 101, 192, 0.2);
}

.copyright p {
    font-size: 0.75rem;
    color: #1565c0;
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
}

.email-link {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    direction: rtl;
    unicode-bidi: bidi-override;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.email-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header .logo {
        width: 120px;
    }
    
    header h1 {
        font-size: 1.7rem;
    }
    
    header .description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .link-item {
        font-size: 0.9rem;
        padding: 16px 20px;
    }
    
    footer {
        font-size: 0.8rem;
    }
    
    .social-section h3 {
        font-size: 0.9rem;
    }
    
    .person-name {
        font-size: 0.85rem;
    }
    
    .person-links .icons a {
        font-size: 1.3rem;
    }
    
    .copyright p {
        font-size: 0.7rem;
    }
    
    .podcast-section h2 {
        font-size: 1.3rem;
    }
    
    .podcast-link {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

