 /* ================================
   CSS VARIABLES
   ================================ */

:root {
    --brand-primary: #ec4899;
    --brand-dark: #db2777;
    --brand-glow: rgba(236, 72, 153, 0.5);

    --bg-body: #000000;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;

    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    --border-light: rgba(255, 255, 255, 0.1);
    --border-brand: rgba(236, 72, 153, 0.2);

    --radius-lg: 16px;
    --radius-full: 9999px;

    --font-main: 'Inter', sans-serif;
}

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

        body {
            font-family: var(--font-main);
            background-color: var(--bg-body);
            background-image: radial-gradient(circle at top right, #331020, #000000 40%);
            color: var(--text-main);
            min-height: 100vh;
            line-height: 1.5;
        }

        /* --- Utilities --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a { text-decoration: none; color: inherit; transition: color 0.3s; }
        
        /* --- Navigation (Consistent with Home) --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-brand);
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-white);
            cursor: pointer;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--brand-dark);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px var(--brand-glow);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-left: 403px;
        }

        .nav-link { color: var(--text-muted); font-weight: 500; }
        .nav-link:hover, .nav-link.active { color: var(--brand-primary); }

        /* --- About Hero --- */
        .about-hero {
            padding-top: 150px;
            padding-bottom: 80px;
            text-align: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 20px;
        }

        .text-gradient {
            background: linear-gradient(to right, #f472b6, #ffffff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- Team Grid --- */
        .team-section {
            padding: 60px 0 100px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        /* --- Developer Card --- */
        .dev-card {
            background: var(--bg-card);
            border: 1px solid var(--bg-card-hover);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 40px 20px;
        }

        .dev-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px -5px rgba(236, 72, 153, 0.15);
            border-color: var(--brand-dark);
        }

        /* Profile Image Container with Glow */
        .img-container {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            padding: 4px; /* Border width */
            background: linear-gradient(45deg, var(--brand-dark), #4f46e5);
            margin-bottom: 20px;
            position: relative;
        }

        .dev-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--bg-card); /* Inner spacing */
            background-color: var(--bg-card);
        }

        .dev-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 5px;
        }

        .dev-role {
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(236, 72, 153, 0.1);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            display: inline-block;
        }

        .dev-bio {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 25px;
            max-width: 90%;
        }

        /* Social Icons */
        .dev-socials {
            display: flex;
            gap: 15px;
            margin-top: auto;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-card-hover);
            color: var(--text-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .social-link:hover {
            background: var(--brand-dark);
            transform: scale(1.1);
            box-shadow: 0 0 10px var(--brand-glow);
        }

        /* --- Footer (Simplified) --- */
        footer {
            border-top: 1px solid var(--bg-card-hover);
            padding: 40px 0;
            text-align: center;
            color: var(--text-muted);
            background: #000;
            margin-top: auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .team-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
            .nav-links { display: none; } /* Simplified mobile nav logic */
        }