
.mythbusters-hero {
    display: flex;
    justify-content: space-between;
    background: #f6fff4;
    padding: 50px;
}
.hero-left {
    flex: 1;
}
.hero-left h1 {
    font-size: 2.5rem;
    color: #111c3b;
}
.hero-left .buttons {
    margin-top: 20px;
}
.hero-left .btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 15px;
}
.btn.green {
    background: #64c65a;
    color: white;
}
.btn.outline {
    border: 2px solid #ff6600;
    color: #ff6600;
}
.hero-right {
    display: flex;
    position: relative;
    width: 500px;
    justify-content: center;
    align-items: center;
}
.card {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.card-1 {
    width: 220px;
    height: 250px;
    transform: translateX(-60px) rotate(-5deg);
    z-index: 1;
}
.card-2 {
    width: 330px;
    height: 380px;
    transform: translateX(0) rotate(0);
    z-index: 2;
}
.card-3 {
    width: 440px;
    height: 440px;
    transform: translateX(60px) rotate(5deg);
    z-index: 1;
}
.card .thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.play-icon {
    width: 40px;
    height: 40px;
    background: white url('https://upload.wikimedia.org/wikipedia/commons/7/79/OOjs_UI_icon_play.svg') no-repeat center center;
    background-size: 60%;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    left: 20px;
}
