@font-face {
    font-family: 'OtoiwoGroteskCompressed';
    src: url('fonts/OtoiwoGroteskCompressed-Black.otf') format('opentype');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'OtoiwoGroteskCondensed';
    src: url('fonts/OtoiwoGroteskCondensed-SemBd.otf') format('opentype');
    font-weight: 600;
    font-display: swap;
}

* {
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


html, body {
    height: 100vh;
    overflow: hidden;
    font-family: 'OtoiwoGroteskCondensed', Arial, sans-serif;
    background-color: #f5f5f5;
}

.slider-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.navigation-arrow {
    position: fixed;
    top: 5vh;
    right: 5vw;
    width: 4vw;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.navigation-arrow:focus,
.navigation-arrow:active {
    outline: none;
    background: none;
}


.navigation-arrow img {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider-wrapper {
    width: 500vw;
    height: 100vh;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 84vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6vh 8vw 4vh 8vw;
    position: relative;
}

.slide-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6vw;
}

.text-section {
    flex: 1;
    max-width: 45vw;
}

.image-section {
    flex: 1;
    max-width: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 1vw;
}

.slide-header {
    display: flex;
    align-items: flex-start;
    gap: 2vw;
    margin-bottom: 4vh;
    position: relative;
}

.diamond-icon {
    width: 3vw;
    height: 3vw;
    min-width: 30px;
    min-height: 30px;
    background: #000;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 1vh;
    position: absolute;
    left: -5vw;
}

.slide-header h1,
.slide-header h2 {
    font-family: 'OtoiwoGroteskCompressed', Arial, sans-serif;
    font-weight: 900;
    font-size: 7.63vh;
    line-height: 0.9;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: 0;
}

.slide-header h2 {
    font-size: 7.63vh;
}

.slide-text p {
    font-family: 'OtoiwoGroteskCondensed', Arial, sans-serif;
    font-weight: 600;
    font-size:  3.2vh;
    line-height: 1.4;
    color: #000;
    margin-bottom: 1.8vh;
}

.footnote {
    font-size: 1.91vh !important;
    color: #000;
    margin-top: 3vh !important;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
    position: absolute;
    bottom: 15vh;
    right: 8vw;
}

.partner-logo span {
    font-family: 'OtoiwoGroteskCondensed', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.91vh;
    color: #000;
    text-transform: uppercase;
}

.partner-logo img {
    height: 6.5vh;
    min-height: 30px;
    max-height: 50px;
    width: auto;
}

.split-slide {
    display: flex;
    gap: 8vw;
    align-items: flex-start;
    padding-top: 8vh;
}

.left-section,
.right-section {
    flex: 1;
}

.split-slide .slide-header {
    margin-bottom: 3vh;
}

.split-slide .slide-text p {
    font-size: 3.2vh;
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.video-placeholder video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 1vw;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.video-placeholder video:focus,
.video-placeholder video:active {
    outline: none;
    background: none;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 1vw;
}

.play-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8vw;
    height: 8vw;
    min-width: 80px;
    min-height: 80px;
    max-width: 120px;
    max-height: 120px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.play-pause-button:focus,
.play-pause-button:active {
    outline: none;
    background: rgba(0, 0, 0, 0.8);
}

.play-pause-button[data-state="pause"] {
    opacity: 0;
    pointer-events: none;
}

.play-icon,
.pause-icon {
    color: white;
    font-size: clamp(1.5rem, 3vw, 3rem);
}

.play-icon {
    margin-left: 0.3vw;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8vw;
    height: 8vw;
    min-width: 80px;
    min-height: 80px;
    max-width: 120px;
    max-height: 120px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 2vw solid white;
    border-top: 1.5vw solid transparent;
    border-bottom: 1.5vw solid transparent;
    margin-left: 0.3vw;
}

.full-video {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2vw;
}
