* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

.hero {
    /* background: url('https://i.imgur.https://media.cnn.com/api/v1/images/stellar/prod/c-2025-01-29t200958z-751044450-rc2qdca4cgkl-rtrmadp-3-tesla-results.jpg?c=16x9&q=h_833,w_1480,c_fill/O3G2aNn.jpg') center/cover no-repeat; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin-bottom: 10px;
}

.hero .years {
    font-size: 1.5em;
    color: #ccc;
}

.play-btn {
    font-size: 28px;
    color: white;
    border: 2px solid white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 56px;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.quote-section {
    background: #fff;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.quote-text {
    flex: 1;
    max-width: 500px;
    font-size: 1.7em;
    font-family: 'Playfair Display', serif;
}

.quote-img {
    flex: 1;
    max-width: 400px;
}

.quote-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bio-section {
    padding: 70px 40px;
    background: #111;
    text-align: center;
}

.bio-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 30px;
    color: #dcfcff;
}

.bio-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1em;
    color: #ccc;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.95em;
    color: #999;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}