:root {
    --clr-primary: #0e3a58;
    --clr-text: #2d3748;
    --clr-card: #ffffff;
    --clr-muted: #6c757d;
    --clr-bg: #f8f9fa;
    --radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --gap: 24px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: auto !important;
}

.guest-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    height: 50px;
}

.auth-actions {
    display: flex;
    gap: 15px;
}

.btn-auth {
    background-color: var(--clr-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-auth:hover {
    background-color: #7da84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 189, 86, 0.3);
}

.btn-outline-auth {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-auth:hover {
    background-color: rgba(143, 189, 86, 0.1);
    transform: translateY(-2px);
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #212529;
    max-width: 800px;
    color: var(--clr-text);
}

.hero-title strong {
    color: var(--clr-primary) !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-muted);
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--clr-text);

}

.join-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
    text-align: center;
}

.input-group-guest {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.meeting-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.meeting-input:focus {
    border-color: #8fbd56;
    outline: none;
    box-shadow: 0 0 0 3px rgba(143, 189, 86, 0.2);
}

.btn-join {
    background-color: var(--clr-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-join:hover {
    background-color: #7da84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 189, 86, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: var(--clr-muted);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e9ecef;
}

.divider:not(:empty)::before {
    margin-right: 1em;
}

.divider:not(:empty)::after {
    margin-left: 1em;
}

.auth-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.auth-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
}

.guest-footer {
    text-align: center;
    padding: 30px 0;
    color: var(--clr-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

.blob-container {
    position: relative;
    width: 100%;
    margin-bottom: -100px;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
}

.blob.one {
    width: 300px;
    height: 300px;
    background: #b8df8881;
    top: -38px;
    right: 10%;
}

.blob.two {
    width: 250px;
    height: 250px;
    background: #8fbd56da;
    top: -47px;
    right: 35%;
}

.blob.three {
    width: 200px;
    height: 200px;
    background: #b8df8881;
    bottom: -151px;
    left: 24%;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .input-group-guest {
        flex-direction: column;
    }

    .btn-join {
        width: 100%;
    }

    .guest-header {
        flex-direction: column;
        gap: 20px;
    }

    .auth-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .join-card,
    .auth-card {
        padding: 20px;
    }

    .btn-auth,
    .btn-outline-auth {
        padding: 8px 16px;
        font-size: 14px;
    }
}