:root {
    --bg-color: #0b0c10;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary-red: #ff0e28;
    --primary-blue: #007aff;
    --text-main: #ffffff;
    --text-muted: #9ba1a6;
    --yellow-accent: #ffeb3b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Orbs */
.glow-circle {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.12;
    animation: drift 15s infinite alternate ease-in-out;
}

.glow-circle.top-left {
    top: -20vw;
    left: -20vw;
    background: radial-gradient(circle, var(--primary-blue), transparent 60%);
}

.glow-circle.bottom-right {
    bottom: -20vw;
    right: -20vw;
    background: radial-gradient(circle, var(--primary-red), transparent 60%);
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, -40px); }
}

.container {
    width: 90%;
    max-width: 650px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Wrapper */
.logo-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #111;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-wrapper:hover .logo-img {
    transform: scale(1.15);
}

.logo-glow {
    position: absolute;
    inset: -2px;
    box-shadow: inset 0 0 25px rgba(255, 14, 40, 0.4), inset 0 0 40px rgba(0, 122, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(255, 235, 59, 0.1);
    color: var(--yellow-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 235, 59, 0.2);
    text-transform: uppercase;
}

/* Text */
.title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #fff 30%, #a4b1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.tag {
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.15);
    color: #a8cdff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tag i {
    color: var(--primary-red);
    font-size: 1rem;
}

.tag:hover {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 122, 255, 0.2);
}

/* Contact Box */
.contact-box {
    margin-bottom: 2.5rem;
    padding: 1.8rem;
    background: rgba(0,0,0,0.25);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.contact-box:hover {
    background: rgba(0,0,0,0.35);
}

.contact-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #25d366;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.phone-link:hover {
    transform: scale(1.05);
    color: #21e065;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Loader */
.loader-container {
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.progress {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 20px;
    animation: loading 2.5s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 14, 40, 0.5);
}

@keyframes loading {
    0% { transform: translateX(-100%); width: 30%; }
    50% { width: 50%; }
    100% { transform: translateX(350%); width: 30%; }
}

.loading-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
    .container {
        padding: 2.5rem 1.5rem;
        width: 92%;
    }
    .title {
        font-size: 1.9rem;
    }
    .logo-wrapper {
        width: 180px;
        height: 180px;
    }
    .phone-link {
        font-size: 1.35rem;
    }
    .tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}
