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

.main-header {
    position: fixed;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    padding: 15px 0;
    border-radius: 25px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-nav {
    max-width: 2080px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ff8c00;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff8c00;
}

.header-buy-button {
    background: linear-gradient(to right, #f9d423, #ff8c00);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    padding-top: 60px;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.3);
    filter: brightness(0.9) contrast(1.2);
}

.content {
    position: relative;
    z-index: 1;
}

.hero-section {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-family: 'Arial Black', Arial, sans-serif;
}

.quote-section {
    position: relative;
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: 50px auto;
}

.quote-background {
    position: absolute;
    top: -100px;
    left: 10px;
    transform: none;
    font-size: 15rem;
    color: #a0522d;
    opacity: 0.8;
    z-index: 1;
}

.quote {
    font-size: 1.5rem;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    color: white;
    font-weight: 400;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.highlight {
    color: #ff4500;
    font-weight: 900;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-content {
    background: #000;
    min-height: 200vh;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    margin-top: calc(100vh - 60px);
}

.content-block {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: lowercase;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .content-block {
        margin: 0 1rem 3rem 1rem;
        padding: 2rem;
    }
    
    .content-block h2 {
        font-size: 2rem;
    }
    
    .quote-background {
        font-size: 8rem;
    }
}

@media (max-width: 1200px) {
    .quote {
        font-size: 2rem;
    }
}

.book-section {
    padding: 60px 0;
    background-color: #0a0a0a;
    border: 1px solid #ff8c00;
    border-radius: 20px;
    margin: 80px 0;
    width: 100%;
    min-height: 700px;
}

.book-container {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
    height: 100%;
    padding: 0 60px;
}

.book-cover {
    text-align: center;
    color: white;
    position: relative;
    flex: 1;
    width: 50%;
    padding: 40px 20px 40px 40px;
}

.book-cover img {
    max-width: 350px;
    border-radius: 10px;
    display: block;
}

.book-cover-image {
    width: 100%;
    height: 600px;
    background: url('WhatsApp Image 2025-06-25 at 20.33.14.jpeg') center/cover;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.book-cover-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: 2px;
}

.book-cover-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

.book-tagline {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #ff8c00;
    font-weight: bold;
    letter-spacing: 1px;
}

.book-author {
    font-size: 1rem;
    margin-top: 10px;
}

.book-details {
    color: white;
    flex: 1;
    width: 50%;
    padding: 40px 40px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

.book-title {
    font-size: 2.2rem;
    margin: 10px 0 20px 0;
    line-height: 1.2;
}

.book-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ddd;
}

.actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.buy-button {
    background: linear-gradient(to right, #f9d423, #ff8c00);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.share-button {
    background-color: #2c1a3b;
    color: #c77dff;
    border: 1px solid #c77dff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.audio-player {
    margin-top: 30px;
    background-color: #1c1c1c;
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: fit-content;
    font-size: 0.9rem;
}

.audio-nav {
    display: flex;
    gap: 15px;
    color: #888;
}

.play-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.audience-section {
    max-width: 2080px;
    margin: 80px auto;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.audience-title {
    font-size: 2.5rem;
    color: #ff8c00;
    font-weight: bold;
    line-height: 1.2;
    flex: 1;
    margin: 0;
}

.audience-content {
    flex: 2;
}

.audience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin: 0;
}

.launch-section {
    max-width: 2080px;
    margin: 80px auto;
    padding: 40px;
}

.launch-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.launch-left {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
}

.launch-right {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.launch-text, .intensity-text {
    font-size: 5rem;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    text-transform: lowercase;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.plus-dynamic {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    transform-origin: center;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.seasons-section {
    max-width: 2080px;
    margin: 80px auto;
    padding: 40px;
}

.seasons-title {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: normal;
}

.seasons-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.seasons-left {
    flex: 1;
}

.seasons-main-title {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.seasons-description {
    margin-bottom: 40px;
}

.seasons-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #ff8c00;
    background: transparent;
    border: 2px solid #ff8c00;
}

.social-icon:hover {
    transform: scale(1.1);
}

.seasons-right {
    flex: 1;
    border-left: 2px solid #333;
    padding-left: 40px;
}

.season-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
    position: relative;
}

.season-item:not(:last-child) .season-number {
    --line-height: 0px;
}

.season-item:not(:last-child) .season-number::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: var(--line-height, 0px);
    max-height: 120px;
    background-color: white;
    transform: translateX(-50%);
    transition: height 0.3s ease;
    transform-origin: top;
}

.season-number {
    font-size: 4rem;
    color: #ff8c00;
    font-weight: bold;
    min-width: 120px;
    position: relative;
}

.season-content h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.season-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.audio-wave {
    margin-top: 15px;
    color: #ff8c00;
    font-size: 1.2rem;
}

.equalizer {
    display: flex;
    align-items: end;
    gap: 1px;
    height: 20px;
    width: 80px;
}

.equalizer .bar {
    width: 3px;
    background: #ff8c00;
    border-radius: 1px;
    animation: bounce 1s infinite ease-in-out;
}

.equalizer .bar:nth-child(1) { height: 8px; animation-delay: -0.9s; }
.equalizer .bar:nth-child(2) { height: 15px; animation-delay: -0.8s; }
.equalizer .bar:nth-child(3) { height: 12px; animation-delay: -0.7s; }
.equalizer .bar:nth-child(4) { height: 20px; animation-delay: -0.6s; }
.equalizer .bar:nth-child(5) { height: 6px; animation-delay: -0.5s; }
.equalizer .bar:nth-child(6) { height: 18px; animation-delay: -0.4s; }
.equalizer .bar:nth-child(7) { height: 10px; animation-delay: -0.3s; }
.equalizer .bar:nth-child(8) { height: 16px; animation-delay: -0.2s; }
.equalizer .bar:nth-child(9) { height: 14px; animation-delay: -0.1s; }
.equalizer .bar:nth-child(10) { height: 7px; animation-delay: 0s; }
.equalizer .bar:nth-child(11) { height: 19px; animation-delay: -0.1s; }
.equalizer .bar:nth-child(12) { height: 11px; animation-delay: -0.2s; }
.equalizer .bar:nth-child(13) { height: 17px; animation-delay: -0.3s; }
.equalizer .bar:nth-child(14) { height: 9px; animation-delay: -0.4s; }
.equalizer .bar:nth-child(15) { height: 13px; animation-delay: -0.5s; }
.equalizer .bar:nth-child(16) { height: 20px; animation-delay: -0.6s; }
.equalizer .bar:nth-child(17) { height: 5px; animation-delay: -0.7s; }
.equalizer .bar:nth-child(18) { height: 14px; animation-delay: -0.8s; }

@keyframes bounce {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}

.explore-seasons-section {
    max-width: 2080px;
    margin: 80px auto;
    padding: 40px;
}

.explore-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.explore-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.episodes-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 22px;
    height: 1800px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episodes-grid.episode-2-active {
    grid-template-columns: 1fr 3fr 1fr 1fr 1fr 1fr 1fr;
}

.episodes-grid.episode-3-active {
    grid-template-columns: 1fr 1fr 3fr 1fr 1fr 1fr 1fr;
}

.episodes-grid.episode-4-active {
    grid-template-columns: 1fr 1fr 1fr 3fr 1fr 1fr 1fr;
}

.episodes-grid.episode-5-active {
    grid-template-columns: 1fr 1fr 1fr 1fr 3fr 1fr 1fr;
}

.episodes-grid.episode-6-active {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 3fr 1fr;
}

.episodes-grid.episode-7-active {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 3fr;
}

.episode-card {
    border: 1px solid #333;
    background: #111;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    overflow: hidden;
    min-height: 607px;
    border-radius: 18px;
}

.episode-card:hover {
    border-color: #ff8c00;
    box-shadow: 
        0 0 20px rgba(255, 140, 0, 1),
        0 0 40px rgba(255, 140, 0, 0.8),
        0 0 80px rgba(255, 140, 0, 0.6),
        0 0 120px rgba(255, 140, 0, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.episode-card.shrinking {
    transform: perspective(1000px) rotateY(-15deg) scale(0.95);
    filter: brightness(0.7);
}

.episode-card.expanding {
    transform: perspective(1000px) rotateY(15deg) scale(1.05);
    filter: brightness(1.2);
}

.episode-card.active {
    transform: perspective(1000px) rotateY(0deg) scale(1);
    filter: brightness(1);
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.episode-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 180px 55px 55px 55px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-label {
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 55px;
    line-height: 1.2;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.episode-title {
    color: #ff8c00;
    font-size: 5.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    opacity: 0.85;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-quotes {
    margin-top: auto;
}

.episode-quotes .quote {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 27px;
    line-height: 1.5;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.audio-player-mini {
    margin-top: 22px;
    color: #ccc;
    font-size: 1.3rem;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.season-label {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #666;
    font-size: 1.3rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-01 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep1.jpeg');
    background-size: cover;
    background-position: center;
}

.episode-02 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep2.jpeg');
    background-size: cover;
    background-position: center;
}

.episode-03 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep3.jpeg');
    background-size: cover;
    background-position: center;
}

.episode-04 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep4.jpeg');
    background-size: cover;
    background-position: center;
}

.episode-05 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep5.jpeg');
    background-size: cover;
    background-position: center;
}

.episode-06 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep6.png');
    background-size: cover;
    background-position: center;
}

.episode-07 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ep7.png');
    background-size: cover;
    background-position: center;
}

.episode-02 .episode-number,
.episode-03 .episode-number,
.episode-04 .episode-number,
.episode-05 .episode-number,
.episode-06 .episode-number,
.episode-07 .episode-number {
    color: white;
}

.episode-02.active {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.episode-03.active {
    box-shadow: 0 0 20px rgba(245, 87, 108, 0.5);
}

.episode-04.active {
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.5);
}

.episode-05.active {
    box-shadow: 0 0 20px rgba(252, 70, 107, 0.5);
}

.episode-06.active {
    box-shadow: 0 0 20px rgba(253, 187, 45, 0.5);
}

.episode-07.active {
    box-shadow: 0 0 20px rgba(168, 237, 234, 0.5);
}

.episode-card.shrinking .episode-label {
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.episode-card.shrinking .episode-title {
    font-size: 2.2rem;
    opacity: 0.7;
}

.episode-card.shrinking .episode-quotes .quote {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.episode-card.shrinking .episode-content {
    padding: 90px 22px 22px 22px;
}

.episode-card.shrinking .episode-number {
    font-size: 1.3rem;
    top: 15px;
    left: 15px;
}

.episode-card.shrinking .audio-player-mini {
    font-size: 0.9rem;
    margin-top: 12px;
}

.episode-card.shrinking .season-label {
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
}

/* Styles pour les épisodes non actifs (petits par défaut) */
.episode-card:not(.active):not(.expanding) .episode-label {
    font-size: 1.8rem;
    margin-bottom: 22px;
}

.episode-card:not(.active):not(.expanding) .episode-title {
    font-size: 2.2rem;
    opacity: 0.7;
}

.episode-card:not(.active):not(.expanding) .episode-quotes .quote {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.episode-card:not(.active):not(.expanding) .episode-content {
    padding: 90px 22px 22px 22px;
}

.episode-card:not(.active):not(.expanding) .episode-number {
    font-size: 1.3rem;
    top: 15px;
    left: 15px;
}

.episode-card:not(.active):not(.expanding) .audio-player-mini {
    font-size: 0.9rem;
    margin-top: 12px;
}

.episode-card:not(.active):not(.expanding) .season-label {
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
}

.purchase-section {
    max-width: 2080px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
}

.purchase-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
}

.purchase-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.purchase-button {
    background: linear-gradient(to right, #f9d423, #ff8c00);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purchase-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.cart-icon {
    font-size: 1.2rem;
}

.testimonials-section {
    max-width: 2080px;
    margin: 80px auto;
    padding: 60px 40px;
}

.testimonials-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    text-align: left;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.testimonials-container {
    display: flex;
    width: 400%;
    transition: transform 0.5s ease;
}

.testimonials-slide {
    min-width: 25%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-shrink: 0;
}

.testimonials-slide:last-child {
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #ff8c00;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    height: 180px;
}

.testimonial-text {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.carousel-navigation {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff8c00, #f9d423);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #ff8c00;
}

.author-header {
    text-align: right;
    margin-bottom: 40px;
}

.author-label {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: normal;
}

.author-name {
    font-size: 6.5rem;
    color: white;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: none;
    font-family: 'Arial Black', 'Impact', Arial, sans-serif;
    letter-spacing: -3px;
    display: inline-block;
    text-align: left;
}

.author-name .highlight {
    color: #dd5500;
    font-weight: 900;
    font-family: inherit;
    letter-spacing: -4px;
    font-size: 6.5rem;
    display: block;
    margin-left: 3.5rem;
}

.author-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: white;
}

.author-description p {
    margin: 0;
}

.author-photos-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.author-photo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.author-photo-slide.active {
    opacity: 1;
}

.author-page .scroll-content {
    background: #000;
    min-height: 200vh;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    margin-top: calc(100vh - 60px);
}

.author-content-only {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.author-hero-section {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
    padding: 2rem;
}

.punchline-section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 3rem;
    background: transparent;
    position: relative;
}

.punchline-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: normal;
}

.punchline-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.punchline-quote-background {
    position: absolute;
    top: -100px;
    left: 10px;
    transform: none;
    font-size: 15rem;
    color: #a0522d;
    opacity: 0.8;
    z-index: 1;
}

.full-width-video-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
}

.genese-video {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff8c00, #f9d423);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
}

.play-icon {
    font-size: 3rem;
    color: white;
    margin-left: 8px;
}

/* Book Showcase Section */
.book-showcase-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    overflow: hidden;
}

.book-showcase-container {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 981px;
}

.book-cover-left {
    flex: 1.2;
    max-width: 500px;
    display: flex;
}

.book-cover-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.book-cover-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('WhatsApp Image 2025-06-25 at 20.33.14.jpeg') center;
    background-size: 110%;
    opacity: 1;
    z-index: 1;
}

.book-badge {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    align-self: center;
}

.book-title-cover {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 0.9;
    letter-spacing: 2px;
}

.book-author {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
}

.book-content-right {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-content-header {
    margin-bottom: 20px;
}

.book-section-title {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    font-weight: normal;
    letter-spacing: 1px;
}

.book-main-title {
    font-size: 2.5rem;
    color: white;
    margin: 10px 0 30px 0;
    line-height: 1.2;
    font-weight: 600;
}

.book-main-title .highlight {
    color: #ff8c00;
}

.book-description {
    margin-bottom: 40px;
}

.book-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ddd;
    margin: 0;
}

.book-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.book-buy-button {
    background: linear-gradient(to right, #f9d423, #ff8c00);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.book-play-button {
    background: rgba(128, 0, 128, 0.8);
    color: white;
    border: 1px solid rgba(128, 0, 128, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.book-play-button:hover {
    background: rgba(128, 0, 128, 1);
    transform: scale(1.1);
}

.book-audio-player {
    background: rgba(20, 20, 20, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #ccc;
    max-width: fit-content;
}

@media (max-width: 768px) {
    .book-showcase-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .book-cover-left {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .book-cover-image {
        height: 400px;
    }
    
    .book-title-cover {
        font-size: 2.5rem;
    }
    
    .book-main-title {
        font-size: 2rem;
    }
    
    .book-content-right {
        padding-left: 0;
    }
} 