/*
Theme Name: Transfer Check
Theme URI: https://example.com/
Author: ChatGPT
Description: Simple one-page WordPress theme to verify site transfer and show PHP version with smart redirect.
Version: 1.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: transfer-check
*/
body {
    font-family: 'Inter', sans-serif;
    background: #f7f8fa;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.container {
    text-align: center;
    background: white;
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeIn 0.6s ease-in-out;
}
h1 {
    color: #333;
    margin-bottom: 10px;
}
p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}
pre {
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
