/* ── TC Guard Modal Overlay & Dialog Styles ── */
.tc-guard-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(4, 7, 6, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tc-guard-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.tc-guard-box {
    background: #0f1814;
    border: 1px solid rgba(119, 169, 87, 0.35);
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(119, 169, 87, 0.15);
    animation: tcModalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes tcModalPop {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.tc-guard-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-guard-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.tc-guard-header p {
    font-size: 13px;
    color: #9ca3af;
    margin: 6px 0 0 0;
}

.tc-guard-body {
    padding: 22px 28px;
    overflow-y: auto;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.tc-guard-highlight-box {
    background: rgba(119, 169, 87, 0.08);
    border: 1px solid rgba(119, 169, 87, 0.22);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
}

.tc-guard-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.tc-guard-point:last-child {
    margin-bottom: 0;
}

.tc-guard-point i {
    color: #85e370;
    font-size: 16px;
    margin-top: 3px;
}

.tc-guard-point div strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.tc-guard-point div span {
    color: #94a3b8;
    font-size: 13px;
}

.tc-guard-legal-links {
    margin-top: 18px;
    font-size: 13px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-guard-legal-links a {
    color: #85e370;
    text-decoration: none;
    margin-right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.tc-guard-legal-links a:hover {
    text-decoration: underline;
}

.tc-guard-footer {
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: rgba(7, 12, 10, 0.6);
}

.tc-btn-secondary {
    background: transparent;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.tc-btn-primary {
    background: #62a345;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(98, 163, 69, 0.3);
    transition: all 0.2s ease;
}

.tc-btn-primary:hover:not(:disabled) {
    background: #73ba52;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(98, 163, 69, 0.4);
}

.tc-btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
