/* Light Mode (Standard) */

/*Colors: */
/*Text #0D0D0D*/
/*Background #FFFFFF*/
/*Primary #3B82F6*/
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #BDF2E3, #A3E4D7);
    color: #0D0D0D;
}

.video {
    text-align: center;
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.video-box {
    border-radius: 20px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.container-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: 40%;
    height: auto;
}

.glass {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(31, 191, 146, 0.2);
    box-shadow: 0 8px 20px rgba(31, 191, 146, 0.15);
    transition: all 0.3s ease;
}

.glassStatic {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(31, 191, 146, 0.2);
    box-shadow: 0 8px 20px rgba(31, 191, 146, 0.15);
    transition: all 0.3s ease;
}

.glass:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(31, 191, 146, 0.25);
    border-color: #7ED9BF;
}

.form-control-modern {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    color: #0D0D0D;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-control-modern:focus {
    outline: none;
    border-color: #7ED9BF;
    box-shadow: 0 0 0 3px rgba(126, 217, 191, 0.1);
    background: #ffffff;
}

.navbar {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-modern {
    padding: 10px 25px;
    background: linear-gradient(90deg, #1FBF92, #7ED9BF);
    border-radius: 30px;
    color: white;
    transition: 0.3s;
    border: none;
    outline: none;
    box-shadow: none;
}

.btnStatic-modern {
    padding: 10px 25px;
    background: linear-gradient(90deg, #1FBF92, #7ED9BF);
    opacity: 0.5;
    border-radius: 30px;
    color: white;
    transition: 0.3s;
    border: none;
    outline: none;
    box-shadow: none;
}

.btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(31, 191, 146, 0.3);
    color: white;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.qr-box {
    text-align: center;
    margin-top: 20px;
}

footer {
    text-align: center;
    margin-top: 50px;
    opacity: 0.7;
}

#qrContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: fit-content;
}

.qr-text-info {
    text-align: left;
}

#qrCode {
    display: block;
    padding: 10px;
    background: white;
    border-radius: 10px;
}

#qrCode img {
    width: 150px !important;
    height: 150px !important;
}

#timer {
    position: fixed;
    top: 20px;
    right: 20px;

    background: #ffffff;
    color: #0D0D0D;
    border: 2px solid rgba(31, 191, 146, 0.3);

    padding: 10px 15px;
    border-radius: 10px;

    font-weight: 600;

    box-shadow: 0 8px 20px rgba(31, 191, 146, 0.2);
    z-index: 1000;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1FBF92;
    border: 2px solid #7ED9BF;
    border-radius: 50%;
}

.form-check-input:checked {
    background-color: #1FBF92;
    border-color: #1FBF92;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(31, 191, 146, 0.2);
    border-color: #1FBF92;
}

.form-check-label {
    cursor: pointer;
    margin-left: 8px;
}

/* Mode Toggle Button */
.mode-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, #1FBF92, #7ED9BF);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(31, 191, 146, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.mode-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(31, 191, 146, 0.4);
}

.mode-toggle-btn:active {
    transform: scale(0.95);
}

html[data-mode="dark"] .mode-toggle-btn {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

html[data-mode="dark"] .mode-toggle-btn:hover {
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
}

/* Dark Mode */
html[data-mode="dark"] {
    color-scheme: dark;
}

html[data-mode="dark"] body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

html[data-mode="dark"] .container-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

html[data-mode="dark"] img {
    width: 40%;
    height: auto;
}

html[data-mode="dark"] .glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: none;
    margin-bottom: 40px;
}

html[data-mode="dark"] .glassStatic {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: none;
    margin-bottom: 40px;
}

html[data-mode="dark"] .glass:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #3b82f6;
}

html[data-mode="dark"] .form-control-modern {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    margin-bottom: 15px;
}

html[data-mode="dark"] .form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

html[data-mode="dark"] .form-control-modern:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3b82f6;
    background: rgba(255, 255, 255, 0.1);
}

html[data-mode="dark"] .navbar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

html[data-mode="dark"] .btn-modern {
    border-radius: 30px;
    padding: 10px 25px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border: none;
    color: white;
    transition: 0.3s;
}

html[data-mode="dark"] .btnStatic-modern {
    border-radius: 30px;
    padding: 10px 25px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    opacity: 0.5;
    border: none;
    color: white;
    transition: 0.3s;
}

html[data-mode="dark"] .btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #3b82f6;
}

html[data-mode="dark"] .video {
    text-align: center;
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

html[data-mode="dark"] .video-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

html[data-mode="dark"] .card-hover:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

html[data-mode="dark"] .qr-box {
    text-align: center;
    margin-top: 20px;
}

html[data-mode="dark"] footer {
    text-align: center;
    margin-top: 50px;
    opacity: 0.7;
}

html[data-mode="dark"] #qrContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: fit-content;
}

html[data-mode="dark"] .qr-text-info {
    text-align: left;
}

html[data-mode="dark"] #qrCode {
    display: block;
    padding: 10px;
    background: white;
    border-radius: 10px;
}

html[data-mode="dark"] #qrCode img {
    width: 150px !important;
    height: 150px !important;
}

html[data-mode="dark"] #timer {
    position: fixed;
    top: 20px;
    right: 20px;

    background: #1D2537;
    color: #ffffff;

    border: 2px solid #475B87;

    padding: 10px 15px;
    border-radius: 10px;

    font-weight: 600;
    font-family: 'Inter', sans-serif;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

html[data-mode="dark"] .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
    border-radius: 50%;
}

html[data-mode="dark"] .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

html[data-mode="dark"] .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

html[data-mode="dark"] .form-check-label {
    cursor: pointer;
    margin-left: 8px;
}
