.bg-slate-900 {
	--tw-bg-opacity: 1;
	background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

    .video-wrapper {
        position: relative;
        width: 100%;
        max-width: 512px;
        aspect-ratio: 16/9;
        background: black;
    }

    .thumbnail {
        width: 100%;
        height: 100%;
        cursor: pointer;
        object-fit: cover;
    }

    .custom-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(255, 255, 255, 0.8);
        border: none;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: 0.3s;
    }

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

    .custom-play-btn::before {
        content: "▶";
        font-size: 24px;
        color: black;
    }
.ytp-large-play-button{
	display: none !important;
}
.app-container {
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
	gap: 9rem;
}

.app-card {
	justify-content: center;
	align-items: center;
	gap: 4rem;
}

.app-card p {
	width: 87%;
	font-size: 16px;
	line-height: 1.5;
	text-align: left;
}

.quick-guide {
	padding: 0 32px 7rem 32px;
}

.quick-guide h1 {
	text-align: center;
	line-height: 1.2;
	padding: 6.5rem 17rem;
}

.logo-container {
	display: flex;
	flex-direction: column;
	color: #fff;
}

.logo-wrapper {
	position: relative;
	width: min-content;
	padding: 1rem;
	border-radius: 9999px;
}

.pulse-ring {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	border-radius: 9999px;
	background-color: rgba(59, 130, 246, 0.1);
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-center {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 75%;
	width: 75%;
	border-radius: 9999px;
	background-color: rgba(59, 130, 246, 0.2);
	transform: translate(-50%, -50%);
	animation: pulse 2s 0.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.logo-icon {
	width: 1.7rem;
	fill: rgba(37, 99, 235, .2);
}

.logo-title {
	margin-top: 1.75rem;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1;
	text-align: left;
}

.logo-description {
	margin-top: 1.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #d1d5db;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}
}

.ytp-watch-later-button {
	display: none !important;
}

@media (max-width: 768px) {
	.quick-guide h1 {
		padding: 3rem 1rem;
	}

	.app-card {
		flex-direction: column;
		display: flex;
	}

	.app-card:nth-child(odd) {
		flex-direction: column;
	}

	.app-card:nth-child(even) {
		flex-direction: column-reverse;
	}

	iframe {
		width: 100%;
	}
}