:root {
    --bg-dark: #020b1c; /* Deep Dark AI Blue */
    --text-main: #ffffff;
    --text-muted: #8ba2c9;
    --accent-blue: #00a3ff;
    --accent-cyan: #00ffcc;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(6, 20, 46, 0.95) 100%);
    position: relative;
    padding: 40px 20px;
}

.ai-grid-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 163, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.centered-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fade-up 1s ease-out forwards;
}

/* ==================================
   IMAGE & perfectly working AI RINGS
   ================================== */
.image-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* SVG ring fits exactly outside the photo */
.tracking-ring {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 2;
}

/* Circular photo container */
.photo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ring Animations */
.ring-spin {
    transform-origin: center;
    animation: spin 10s linear infinite;
}

.ring-spin-reverse {
    transform-origin: center;
    animation: spin-reverse 15s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

/* ==================================
   CONTENT (Centered)
   ================================== */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid var(--accent-blue);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.2);
}

.name {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.title span {
    color: var(--accent-blue);
    font-weight: 600;
}

.description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 35px;
}

.description strong {
    color: #ffffff;
}

/* Contact Box */
.contact-box {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(0, 163, 255, 0.15);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 163, 255, 0.2);
}

.contact-link i {
    color: var(--accent-cyan);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: default; /* Since it's on hold */
}

/* Only apply hover effects, but maybe not click stuff since it's on hold */
.social-icon:hover {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
}

/* Floating Orbs */
.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -100px;
    right: -100px;
    animation: drift 12s alternate infinite ease-in-out;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-cyan);
    bottom: -100px;
    left: -100px;
    animation: drift 15s alternate-reverse infinite ease-in-out;
}

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

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

/* ==================================
   RESPONSIVE (MOBILE)
   ================================== */
@media (max-width: 600px) {
    .name { font-size: 2.4rem; }
    .title { font-size: 1.1rem; }
    .description { font-size: 1rem; }
    .contact-box { flex-direction: column; gap: 15px; width: 100%; }
    .contact-link { width: 100%; justify-content: center; }
    .image-container { width: 220px; height: 220px; margin-bottom: 30px; }
    .photo-circle { width: 175px; height: 175px; }
}
