body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
}
h1 {
    color: #333;
}
.logo-dark { display: none; }
.logo-light { display: block; }
.logo {
    width: 50vw;
    display: block;
}
.trust-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 90vw;
    margin-top: 20%;
    scale: 0.8;
}
.trust-checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    gap: 8px;
    max-width: 320px;
    text-align: left;
}
.trust-checkbox-label a {
    color: #3375bb;
    text-decoration: underline;
}
.trust-checkbox-label input[type="checkbox"] {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    max-height: 26px;
    margin-right: 8px;
    margin-top: 2px;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: 2.5px solid #0401fd;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-block;
}
.trust-checkbox-label input[type="checkbox"]:checked {
    background: #0401fd;
    border-color: #0401fd;
}
.trust-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 11px;
    height: 5px;
    border: solid #fff;
    border-width: 0 0 2.5px 2.5px;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -55%) rotate(-45deg);
    border-radius: 0;
    background: none;
}
.trust-checkbox-label span {
    display: block;
    line-height: 1.3;
}
.trust-btn {
    background: #0401fd;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(51,117,187,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.trust-btn.secondary {
    background: #eee;
    color: #333;
}
.trust-btn.secondary:hover {
    background: #ccc;
    color: #222;
}
.trust-btn.link {
    background: transparent;
    color: #333;
    border: none;
    border-radius: 0;
    min-width: unset;
    width: auto;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    box-shadow: none;
    text-align: left;
    margin: 0 auto;
}
.trust-btn.link:hover {
    text-decoration: underline;
    color: #0401fd;
    background: transparent;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.trust-btn:hover {
    background: #2320a7;
    box-shadow: 0 4px 16px rgba(51,117,187,0.15);
}
.trust-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* Loader diamond styles */
.diamond-loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    scale: 0.7;
}
.diamond-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    background: #ededed;
    border-radius: 16px;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}
.diamond-bars {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    width: 48px;
    height: 24px;
    z-index: 2;
}
.diamond-bars .bar {
    width: 8px;
    margin: 0 2px;
    background: #0401fd;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-end;
    animation: wave 2.2s infinite cubic-bezier(.4,0,.2,1);
    transform-origin: bottom;
}
.diamond-bars .bar1 { height: 8px; animation-delay: 0s; }
.diamond-bars .bar2 { height: 12px; animation-delay: 0.15s; }
.diamond-bars .bar3 { height: 18px; animation-delay: 0.3s; }
.diamond-bars .bar4 { height: 12px; animation-delay: 0.45s; }
@keyframes wave {
    0%, 100% { height: 8px; transform: translateY(0); }
    10% { height: 12px; transform: translateY(-2px); }
    25% { height: 18px; transform: translateY(-6px); }
    50% { height: 12px; transform: translateY(2px); }
    75% { height: 18px; transform: translateY(-6px); }
    90% { height: 12px; transform: translateY(-2px); }
}
/* End loader diamond styles */

@media (prefers-color-scheme: dark) {
    .logo-light { display: none; }
    .logo-dark { display: block; }
    .trust-checkbox-label {
        color: #f8f9fa;
    }
    .trust-checkbox-label a {
        color: #29b6f6;
    }
    .network-btn {
        background: #4ffa94;
        color: #181a1b;
    }
    .trust-btn {
        background: #4ffa94;
        color: #181a1b;
    }
    .trust-btn:hover {
        background: #2be36e;
    }
    .trust-checkbox-label input[type="checkbox"] {
        border-color: #4ffa94;
        background: #181a1b;
    }
    .trust-checkbox-label input[type="checkbox"]:checked {
        background: #4ffa94;
        border-color: #4ffa94;
    }
    .trust-checkbox-label input[type="checkbox"]:checked::after {
        border-color: #181a1b;
    }
    .diamond-bg {
        background: #232323;
    }
    .diamond-bars .bar {
        background: #4ffa94;
    }
    .trust-btn.link {
        color: #f8f9fa;
    }
    .trust-btn.link:hover {
        color: #4ffa94;
    }
}
@media (max-width: 480px) {
    .trust-form {
        max-width: 90vw;
    }
    .trust-checkbox-label {
        max-width: 90vw;
    }
} 