/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    overflow: hidden;
    line-height: 1.6;
    height: 100vh;
}

html {
    overflow: hidden;
    height: 100vh;
}

/* Hero Container */
.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    animation: cinematicOpen 2s ease-out forwards;
}

@keyframes cinematicOpen {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    animation: videoFadeIn 2.5s ease-out 0.5s forwards;
}

@keyframes videoFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation */
.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    z-index: 15;
    opacity: 0;
    animation: navSlideIn 1.5s ease-out 1s forwards;
}

@keyframes navSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Common Button/Text Styles */
.book-call-btn,
.revealing-soon,
.volume-btn,
.play-pause-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-call-btn {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.book-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.book-call-btn:hover::before {
    left: 100%;
}

.book-call-btn:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.revealing-soon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-transform: lowercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Play/Pause Button */
.play-pause-btn {
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.play-pause-btn:hover::before {
    width: 100%;
    height: 100%;
}

.play-pause-btn:hover {
    color: rgba(255, 255, 255, 1);
}

.play-pause-btn.paused .play-pause-icon {
    opacity: 0.7;
    animation: subtleCross 0.4s ease-out;
}

.play-pause-btn:not(.paused) .play-pause-icon {
    animation: subtleUncross 0.4s ease-out;
}

.play-pause-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes subtleCross {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(90deg); }
    100% { transform: scale(1) rotate(180deg); }
}

@keyframes subtleUncross {
    0% { transform: scale(1) rotate(180deg); }
    50% { transform: scale(1.1) rotate(90deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Volume Button */
.volume-btn {
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.volume-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.volume-btn:hover::before {
    width: 100%;
    height: 100%;
}

.volume-btn:hover {
    color: rgba(255, 255, 255, 1);
}

.volume-btn.muted .volume-icon {
    opacity: 0.5;
    animation: subtleCross 0.4s ease-out;
}

.volume-btn:not(.muted) .volume-icon {
    animation: subtleUncross 0.4s ease-out;
}

.volume-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Video Preview Circle */
.video-preview-circle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 20;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: previewCircleIn 1s ease-out 2.5s forwards;
}

@keyframes previewCircleIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.video-preview-circle:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-preview-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.play-overlay svg {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-preview-circle:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.video-preview-circle:hover .play-overlay svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Popup Video Player */
.popup-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90vw;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.popup-video.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-title {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.close-popup {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
}

.close-popup:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.close-popup svg {
    width: 20px;
    height: 20px;
}

.popup-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.popup-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-video-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-play-pause,
.popup-volume {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.popup-play-pause:hover,
.popup-volume:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.popup-play-pause.playing .popup-play-icon {
    display: none;
}

.popup-play-pause.playing::after {
    content: '';
    width: 14px;
    height: 14px;
    background: currentColor;
    clip-path: polygon(0 0, 0 100%, 40% 100%, 40% 0, 100% 0, 100% 100%, 60% 100%, 60% 0);
}

.popup-play-icon,
.popup-volume-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.popup-volume.muted .popup-volume-icon {
    opacity: 0.5;
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 1200px) {
    .nav {
        padding: 1.5rem 2rem;
    }
    
    .book-call-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.4rem;
    }
    
    .revealing-soon {
        font-size: 0.95rem;
    }
    
    .popup-video {
        width: 95vw;
        max-width: 700px;
    }
    
    .video-preview-circle {
        width: 70px;
        height: 70px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .play-overlay svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.2rem 1.5rem;
    }
    
    .nav-right {
        gap: 0.8rem;
    }
    
    .book-call-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .revealing-soon {
        font-size: 0.9rem;
    }
    
    .play-pause-btn,
    .volume-btn {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .play-pause-icon,
    .volume-icon {
        width: 18px;
        height: 18px;
    }
    
    .video-preview-circle {
        width: 70px;
        height: 70px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .play-overlay svg {
        width: 20px;
        height: 20px;
    }
    
    .popup-video {
        width: 98vw;
        max-width: none;
        border-radius: 16px;
    }
    
    .popup-header {
        padding: 1.2rem 1.5rem 0.8rem 1.5rem;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-video-controls {
        bottom: 1.2rem;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .popup-play-pause,
    .popup-volume {
        width: 36px;
        height: 36px;
        padding: 0.5rem;
    }
    
    .popup-play-icon,
    .popup-volume-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem 1rem;
    }
    
    .nav-right {
        gap: 0.7rem;
    }
    
    .book-call-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .revealing-soon {
        font-size: 0.85rem;
    }
    
    .play-pause-btn,
    .volume-btn {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .play-pause-icon,
    .volume-icon {
        width: 16px;
        height: 16px;
    }
    
    .video-preview-circle {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .play-overlay svg {
        width: 18px;
        height: 18px;
    }
    
    .popup-video {
        border-radius: 12px;
    }
    
    .popup-header {
        padding: 1rem 1.2rem 0.6rem 1.2rem;
    }
    
    .popup-title {
        font-size: 1rem;
    }
    
    .popup-video-controls {
        bottom: 1rem;
        gap: 0.6rem;
        padding: 0.6rem;
    }
    
    .popup-play-pause,
    .popup-volume {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }
    
    .popup-play-icon,
    .popup-volume-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 360px) {
	.nav {
		padding: 0.8rem 0.8rem;
	}
	
	.nav-right {
		gap: 0.6rem;
	}
	
	.book-call-btn {
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
	}
	
	.revealing-soon {
		font-size: 0.8rem;
	}
	
	.play-pause-btn,
	.volume-btn {
		width: 32px;
		height: 32px;
		padding: 0.3rem;
	}
	
	.play-pause-icon,
	.volume-icon {
		width: 14px;
		height: 14px;
	}
	
	.video-preview-circle {
		width: 45px;
		height: 45px;
		bottom: 1.5rem;
		right: 1.5rem;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
		border: 2px solid rgba(255, 255, 255, 0.1);
	}
	
	.play-overlay svg {
		width: 14px;
		height: 14px;
	}
	
	.play-overlay svg {
		width: 16px;
		height: 16px;
	}
    
    .popup-video {
        border-radius: 8px;
    }
    
    .popup-header {
        padding: 0.8rem 1rem 0.5rem 1rem;
    }
    
    .popup-title {
        font-size: 0.9rem;
    }
    
    .popup-video-controls {
        bottom: 0.8rem;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .popup-play-pause,
    .popup-volume {
        width: 28px;
        height: 28px;
        padding: 0.3rem;
    }
    
    .popup-play-icon,
    .popup-volume-icon {
        width: 12px;
        height: 12px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .nav {
        padding: 1rem 2rem;
    }
    
    .book-call-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .revealing-soon {
        font-size: 0.85rem;
    }
    
    .play-pause-btn,
    .volume-btn {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .play-pause-icon,
    .volume-icon {
        width: 16px;
        height: 16px;
    }
    
    .video-preview-circle {
        width: 60px;
        height: 60px;
        bottom: 1.5rem;
        right: 1.5rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .popup-video {
        max-height: 80vh;
    }
}

/* Additional mobile spacing for very small screens */
@media (max-width: 320px) {
    .video-preview-circle {
        width: 40px;
        height: 40px;
        bottom: 1.2rem;
        right: 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
    }
    
    .play-overlay svg {
        width: 12px;
        height: 12px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .play-pause-icon,
    .volume-icon {
        transform: scale(0.9);
    }
}

/* Video Preview Circle */
.video-preview-circle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 20;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: previewCircleIn 1s ease-out 2.5s forwards;
}

@keyframes previewCircleIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.video-preview-circle:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-preview-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.play-overlay svg {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-preview-circle:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.video-preview-circle:hover .play-overlay svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Popup Video Player */
.popup-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90vw;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.popup-video.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-title {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.close-popup {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
}

.close-popup:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.close-popup svg {
    width: 20px;
    height: 20px;
}

.popup-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.popup-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-video-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-play-pause,
.popup-volume {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.popup-play-pause:hover,
.popup-volume:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.popup-play-pause.playing .popup-play-icon {
    display: none;
}

.popup-play-pause.playing::after {
    content: '';
    width: 14px;
    height: 14px;
    background: currentColor;
    clip-path: polygon(0 0, 0 100%, 40% 100%, 40% 0, 100% 0, 100% 100%, 60% 100%, 60% 0);
}

.popup-play-icon,
.popup-volume-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.popup-volume.muted .popup-volume-icon {
    opacity: 0.5;
}

/* Selection styling */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* In-place expanding popup overrides */
.popup-video {
	bottom: 1.5rem;
	right: 1.5rem;
	top: auto;
	left: auto;
	transform: scale(0);
	transform-origin: bottom right;
	width: 420px;
	height: 420px;
	max-width: 94vw;
	max-height: 94vw;
	border: none;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.95);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.popup-video.active {
	transform: scale(1);
}

/* Remove header/title/border for minimal look */
.popup-header {
	display: none !important;
}

/* Hide popup title since we removed the header */
.popup-title {
	display: none !important;
}

/* Close button inside video frame */
.close-popup {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: rgba(0, 0, 0, 0.35);
	border-radius: 9999px;
	backdrop-filter: blur(6px);
	width: 24px;
	height: 24px;
	z-index: 10;
}

.close-popup svg {
	width: 14px;
	height: 14px;
}

/* Make video edge-to-edge inside popup */
.popup-video-container {
	border-radius: 20px;
	height: 100%;
}

/* Mobile tweaks */
@media (max-width: 768px) {
	.popup-video {
		bottom: 1rem;
		right: 1rem;
		width: 92vw;
		height: 92vw;
	}
	
	.video-preview-circle {
		bottom: 2rem;
		right: 2rem;
		width: 65px;
		height: 65px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
		border: 2px solid rgba(255, 255, 255, 0.15);
	}
	
	.play-overlay svg {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 420px) {
	.popup-video {
		bottom: 0.8rem;
		right: 0.8rem;
		width: 92vw;
		height: 92vw;
	}
	
	.video-preview-circle {
		bottom: 1.8rem;
		right: 1.8rem;
		width: 55px;
		height: 55px;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
		border: 2px solid rgba(255, 255, 255, 0.12);
	}
	
	.play-overlay svg {
		width: 16px;
		height: 16px;
	}
}
