:root {
	--upsa-green-rgb: 1, 89, 65;
	--upsa-green: rgb(var(--upsa-green-rgb));
}

body, html {
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

.content-container {
	position: relative;
	z-index: 10;
	height: 100vh;
}

.btn-upsa {
	background-color: var(--upsa-green);
	border: none;
	color: white;
}

.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	pointer-events: none;
}

.video-background iframe {
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
	color: white;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 550px;
    width: 95%;
    padding: 2.5rem 2rem;
}

.glass-panel .btn {
    font-size: 0.95rem;
    white-space: nowrap;
    flex: 0 1 auto;
}

@media (max-width: 768px) {
    .glass-panel .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

.phone-mockup {
	width: 280px;
	height: 580px;
	border: 12px solid #222;
	border-radius: 40px;
	position: relative;
	overflow: hidden;
	background: #000;
	box-shadow: 0 25px 50px rgba(0,0,0,0.8);
	margin-bottom: 80px;
}

.phone-mockup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	border-radius: 20px;
	background: #222;
	z-index: 10;
}

.phone-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: transparent;
}

.social-icons .btn-dark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-icons .btn-dark:hover {
    background-color: var(--upsa-green);
    transform: scale(1.1);
    color: white;
}

.right-content-wrapper {
    margin-right: -2rem;
}

#login_modal .modal-body {
    position: relative;
}

#login_modal .btn-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    margin: 0;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

#login_modal .btn-close:hover {
    opacity: 1;
}

#modal_login_title {
    padding: 0 30px; 
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 100;
	background: rgba(0, 0, 0, 0.8);
	color: #ccc;
	font-size: 0.8rem;
	padding: 15px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
}