.container {
    font-family: Roboto, helvetica, arial, sans-serif;
    min-height: 100vh;
    background-color: #fff;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.m-p {
    margin: 0;
    padding: 0;
}

.block {
    display: block;
}

code {
    font-size: 11px;
    margin-left: -6px;
    color: #555;
    white-space: nowrap;
    display: inline-block;
    margin-top: 5px;
}

.line-normal {
    line-height: normal;
}

.checkbox-window {
    height: 78px;
    width: 400px;
    background-color: #fff;
    border-radius: 2px;
    position: relative;
    border: none;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.checkbox-window a {
    color: #555;
    text-decoration: none;
}

.checkbox-window a:hover {
    color: #555;
    text-decoration: underline;
}

.checkbox-container {
    width: 28px;
    height: 28px;
    position: relative;
    margin-right: 15px;
}

.checkbox {
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    height: 100%;
    width: 100%;
    border: 1px solid #d3d3d3;
    margin: 0;
    outline: none;
    font-family: Roboto, helvetica, arial, sans-serif;
    transition: width 500ms, height 500ms, border-radius 500ms, margin-top 500ms, margin-left 500ms, opacity 700ms;
}

.checkbox:hover {
    border: 1px solid #b2b2b2;
}

.im-not-a-robot {
    position: static;
    font-size: 16px;
    color: #282727;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.captcha-logo {
    position: static;
    width: auto;
    height: 80px;
	right: 20px;
    -webkit-font-smoothing: antialiased;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
    margin-right: 5px;
}

.checkbox-desc {
    position: absolute;
    font-size: 8px;
    color: #555;
    bottom: 5px;
    right: 40px;
    margin: 0;
    padding: 0;
}

.spinner {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 20px;
    width: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #4d90fe;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s linear;
    animation: cf-spin 1s linear infinite;
    z-index: 2;
}

@keyframes cf-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.verify-window {
    font-family: Roboto, helvetica, arial, sans-serif;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    margin: auto;
    width: 360px;
    background-color: #fff;
    border: 1px solid #cecece;
    -webkit-box-shadow: 5px 6px 7px -3px rgba(0, 0, 0, 0.12);
    box-shadow: 5px 6px 7px -3px rgba(0, 0, 0, 0.12);
    transition: opacity 400ms;
    z-index: 9999;
}

.verify-window.visible {
    opacity: 1;
    visibility: visible;
}

/* Add overlay when verify window is visible */
.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms;
}

.verify-overlay.visible {
    opacity: 1;
    visibility: visible;
}

ol {
    counter-reset: item;
    list-style-type: none;
    list-style-position: outside;    
    padding-left: 0;
    margin: 15px 0;
}

ol li {
    counter-increment: item;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

ol li::before {
    content: counter(item) ". ";
    color: #1A73E8;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 0;
    flex-shrink: 0;
    width: 15px;
    text-align: right;
}

ol li span {
    display: inline;
    padding-right: 5px;
    white-space: normal;
}

ol li b, ol li i {
    margin: 0 3px;
}

.fab {
    margin: 0 3px;
}

@media (max-width: 380px) {
    ol li span {
        white-space: normal;
    }
}

.verify-container {
    padding: 8px;
}

.verify-header {
    background-color: #fc8624;
    padding: 16px 16px 20px 16px;
    color: #fff;
}

.verify-header-text-small {
    font-size: 14px;
    line-height: normal;
}

.verify-header-text-medium {
    font-size: 16px;
}

.verify-header-text-big {
    font-size: 24px;
    font-weight: 700;
}

.verify-main {
    padding: 5px 15px 15px 15px;
    color: #111;
    font-size: 13px;
    position: relative;
}

.verify-main p {
    margin: 10px 0;
    line-height: 1.5;
}

.verify-footer {
    border-top: 1px solid #cecece;
    padding: 10px 7px 10px 7px;
    color: #737373;
    display: grid;
    grid-template-columns: auto 102px;
    font-size: 13px;
}

.verify-footer-left {
    padding: 5px;
}

.verify-verify-button {
    text-transform: uppercase;
    background-color: #fc8624;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 14px 0;
    text-decoration: none;
    font-weight: 600;
    height: min-content;
    border-radius: 3px;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: not-allowed;
}

.verify-error {
    display: none;
    color: #d32f2f;
    background-color: #fce8e6;
    border: 1px solid #ffcdd2;
    border-radius: 0;
    padding: 12px 15px;
    margin: 15px 0 5px 0;
    text-align: center;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.verify-error.fade-out {
    opacity: 0;
}

.verify-verify-button:not([disabled]) {
    cursor: pointer;
    background-color: #fc8624;
}

.verify-verify-button:not([disabled]):hover {
    background-color: #e67a20;
}

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
    min-height: 80vh;
    position: relative;
    padding-bottom: 120px;
}

.header-section {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.captcha-frame {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    display: inline-block;
    align-self: flex-start;
    padding: 0;
}

.site-name {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.verification-message {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

.message-section {
    margin: 30px 0;
    text-align: left;
    align-self: flex-start;
}

.security-message {
    font-size: 20px;
    color: #333;
    max-width: 600px;
    text-align: left;
    margin-top: 40px;
}

.footer-section {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #fff;
}

.footer-section::before {
    content: "";
    display: block;
    height: 1px;
    background-color: #e8e8e8;
    position: absolute;
    top: 15px;
    left: 5%;
    right: 5%;
    width: 90%;
    margin: 0 auto;
}

.ray-id {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.performance-footer {
    font-size: 14px;
    color: #555;
    width: 100%;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.performance-footer a {
    color: #2c7cb0;
    text-decoration: none;
}

.performance-footer a:hover {
    text-decoration: underline;
}

/* Cloudflare checking screen styles */
.checking-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    background-color: #f9f9f9;
    color: #000;
}

.checking-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.checking-content {
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.checking-header {
    margin-bottom: 30px;
}

.checking-title {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.checking-browser {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    margin-bottom: 30px;
}

.progress-wrapper {
    margin-bottom: 40px;
}

.progress-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #f3f3f3;
    border-radius: 4px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #f78b1f;
    transition: width 0.1s linear;
}

.checking-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.cf-info {
    font-size: 13px;
    color: #777;
    font-weight: normal;
}

.cf-info a {
    color: #f78b1f;
    text-decoration: none;
    font-weight: normal;
}

.cf-info a:hover {
    text-decoration: underline;
}

.cf-ray {
    font-size: 11px;
    color: #a8a8a8;
}

.verify-success {
    display: none;
    color: #4caf50;
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 2px;
    padding: 12px 15px;
    margin: 15px 0 5px 0;
    text-align: center;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
}

.final-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.final-loading.show {
    opacity: 1;
}

.final-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #f78b1f;
    border-radius: 50%;
    animation: cf-spin 1s linear infinite;
    margin-bottom: 20px;
}

.final-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.unsupported-device {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    z-index: 20000;
    padding: 30px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.unsupported-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.unsupported-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.unsupported-title {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
}

.unsupported-message {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.unsupported-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #777;
}

.device-icon {
    font-size: 50px;
    color: #f78b1f;
    margin-bottom: 20px;
} 