@font-face {
    font-family: 'Whitney';
    src: url('fonts/Whitney-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Whitney', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #eeeeee;
}

.header {
    text-align: right;
    padding: 40px 0 30px;
    background-color: #eeeeee;
    max-width: 900px;
    margin: 0 auto;
}

.name {
    font-family: 'Futura', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 100px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1;
}

.first-name,
.last-name {
    display: block;
}

.contact {
    font-size: 1.1rem;
}

.contact a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #525252;
}

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

.description {
    font-family: 'Whitney', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.1rem;
    color: #000000;
    margin-top: 15px;
}

.main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.video-container {
    width: 100%;
    margin-bottom: 30px;
}

.video-container:last-child {
    margin-bottom: 0;
}

.video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #f8f9fa;
    border-radius: 24px;
    corner-shape: squircle;
}

.video-info {
    padding: 10px 5px;
    text-align: right;
    background: transparent;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.video-info p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 940px) {
    .name {
        font-size: 70px;
    }
    
    .main {
        padding: 20px;
    }
    
    .header {
        padding: 40px 20px 20px;
    }
    
    .video-container {
        margin-bottom: 50px;
    }
    
    .video {
        height: auto;
    }
}

@media (max-width: 514px) {
    .contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .video-container {
        margin-bottom: 40px;
    }
    
    .video {
        height: auto;
        border-radius: 24px;
        corner-shape: squircle;
    }
}