/*
Theme Name: Targeted Redirect Theme
Description: A simple one-page theme with ISP and Geo-targeted redirection.
Author: Gemini
Version: 1.1
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff; /* সম্পূর্ণ সাদা ব্যাকগ্রাউন্ড */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eeeeee;
}

h1 { color: #333; font-size: 24px; margin-bottom: 10px; }
p { color: #666; font-size: 16px; }

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}