/**
 * Turnstile Verification Page Styles
 *
 * @package Steam_Prices
 * @since 2.0.0
 */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.verification-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.verification-container h1 {
    font-size: 24px;
    margin: 0 0 16px;
    color: #333;
}

.verification-container p {
    color: #666;
    margin: 0 0 24px;
    line-height: 1.6;
}

.turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.loading {
    display: none;
    margin-top: 20px;
    color: #666;
}

.loading.active {
    display: block;
}