@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Noto+Sans+Telugu:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Noto Sans Telugu', Arial, sans-serif;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 170, 0, 0.18), transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(255, 90, 40, 0.15), transparent 45%),
        #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.card {
    background: linear-gradient(160deg, #1c1c1c, #121212);
    padding: 32px 26px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(255, 184, 0, 0.35);
    box-shadow: 0 0 35px rgba(255, 170, 0, 0.15), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.logo img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #ffb800;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    margin-bottom: 15px;
    object-fit: cover;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #ffd54f, #ff8f00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.subtitle {
    color: #ffcc80;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.features {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 12px 10px;
}

.features p {
    color: #e0e0e0;
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

.btn {
    display: block;
    margin: 25px 0;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ffb800, #ff6a00);
    color: #111;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(255, 120, 0, 0.35);
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.55);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(255, 120, 0, 0.35); }
    50%      { box-shadow: 0 6px 28px rgba(255, 150, 0, 0.7); }
}

h3 {
    color: #bdbdbd;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
}

h3 #t {
    color: #ffb800;
    font-weight: 700;
}

.footer {
    color: #999;
    margin-top: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
    line-height: 1.5;
}
