/* 
   ==========================================================================
   Premium Glassmorphism & Cyberpunk Mobile Developer Portfolio Theme
   Designed for High-End Developer Portfolios & Ads.txt Hosts (Single-Screen)
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-main: #060814;
    --bg-card: rgba(13, 17, 30, 0.65);
    --bg-card-hover: rgba(20, 26, 46, 0.85);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(0, 242, 254, 0.25);
    
    --primary-grad: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --secondary-grad: linear-gradient(135deg, #ff007f 0%, #7928ca 100%);
    
    --primary-color: #00f2fe;
    --primary-glow: rgba(0, 242, 254, 0.2);
    --secondary-color: #ff007f;
    --secondary-glow: rgba(255, 0, 127, 0.25);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* System Properties */
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px 0 rgba(0, 242, 254, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow: hidden; /* Remove vertical scrolling completely */
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Gradients & Glow Effects */
.bg-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: var(--bg-main);
}

.ambient-orb-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.ambient-orb-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 25s infinite alternate-reverse ease-in-out;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
}

/* Animations */
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(0, 242, 254, 0.15); }
    50% { box-shadow: 0 0 30px rgba(0, 242, 254, 0.35); }
    100% { box-shadow: 0 0 15px rgba(0, 242, 254, 0.15); }
}

@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typography Utilities */
.gradient-text {
    background: var(--primary-grad);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 6s linear infinite;
}

h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Glassmorphism Containers */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 40px;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: #060814;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-header);
    color: var(--text-primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 8px 16px;
    border-radius: 8px;
}

nav ul li a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

nav ul li a.active-link {
    color: var(--primary-color);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
}

/* Hero Section */
.hero-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Prevent header overlap */
    padding-bottom: 40px;
    z-index: 10;
}

.hero-container {
    max-width: 1050px;
    width: 90%;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle laser highlight on top border */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.badge-verification {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(56, 239, 125, 0.08);
    border: 1px solid rgba(56, 239, 125, 0.25);
    border-radius: 100px;
    color: #38ef7d;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 0 10px rgba(56, 239, 125, 0.05);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-verification svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.hero-container h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-container p.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Media Queries */
@media(max-width: 991px) {
    .hero-container h1 {
        font-size: 2.8rem;
    }
    
    header {
        padding: 20px 20px;
    }
}

@media(max-width: 576px) {
    body {
        overflow-y: auto; /* Fallback for small viewports */
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 20px;
    }
    
    .hero-container {
        padding: 40px 20px;
    }
    
    .hero-container h1 {
        font-size: 2.2rem;
    }
    
    .hero-container p.subtitle {
        font-size: 1.1rem;
    }
    

}
