:root {
    --bg-dark: #050508;
    --bg-darker: #020203;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    
    /* Neon Accents */
    --accent-cyan: #00f0ff;
    --accent-purple: #bf00ff;
    --accent-magenta: #ff003c;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.2); }
    100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.admin-link {
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.glitch-text {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dynamic-roles {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.role-highlight {
    color: var(--accent-cyan);
    font-weight: 700;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--accent-cyan);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    border: none;
}

.primary-btn:hover {
    box-shadow: 0 6px 20px rgba(191, 0, 255, 0.5);
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    margin-left: 1rem;
}

.secondary-btn:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Hero Image */
.hero-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
    aspect-ratio: 4/5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 1;
}

.tech-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tech-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.tech-badge:nth-child(1) { top: 10%; right: 5%; animation: float 6s infinite alternate; }
.tech-badge:nth-child(2) { bottom: 20%; left: 5%; animation: float 7s infinite alternate-reverse; }
.tech-badge:nth-child(3) { bottom: 10%; right: 10%; animation: float 5s infinite alternate; }

/* General Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-bg {
    background-color: var(--bg-darker);
    max-width: 100%;
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: calc((100vw - 1200px) / 2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Project Cards */
.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--glass-border);
}

.ai-bg { background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.cv-bg { background-image: url('https://images.unsplash.com/photo-1555255707-c07966088b7b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.it-bg { background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-tags span {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 12px;
}

/* Startups */
.startup-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.startup-content {
    flex: 1;
}

.startup-card {
    padding: 2rem;
}

.highlight-card {
    border-color: rgba(191, 0, 255, 0.4);
    box-shadow: 0 10px 30px rgba(191, 0, 255, 0.1);
}

.mt-4 { margin-top: 2rem; }

.role-badge {
    display: inline-block;
    color: var(--accent-magenta);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.achievement-list {
    margin-top: 1rem;
    list-style: none;
}

.achievement-list li {
    margin-bottom: 0.5rem;
    color: #ddd;
    font-size: 0.95rem;
}

.startup-visual {
    flex: 1;
}

.cert-panel {
    padding: 1rem;
    text-align: center;
}

.cert-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cert-caption {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Creative Grid */
.creative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.creative-item {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.creative-item:hover .creative-overlay {
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(5px);
}

.creative-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5,5,8,0.9), transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.creative-overlay h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.5rem; }
.creative-overlay p { color: #ddd; transform: translateY(20px); opacity: 0; transition: all 0.3s ease; }
.creative-item:hover .creative-overlay p { transform: translateY(0); opacity: 1; }

.photo-item { 
    grid-row: span 2; 
    background-image: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.film-item { 
    background-image: url('https://images.unsplash.com/photo-1485846234645-a62644f84728?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}
.sound-item { 
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

/* Management */
.management-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.management-text {
    flex: 1;
}

.management-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.management-list {
    margin-top: 2rem;
    padding-left: 1.5rem;
}

.management-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.management-list strong {
    color: #fff;
}

.management-image {
    flex: 1;
    max-width: 400px;
    padding: 1rem;
    aspect-ratio: 3/4;
}

.prof-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: rgba(0,0,0,0.5);
}

.footer-brand h2 {
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--accent-cyan);
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-socials a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container, .startup-container, .management-container {
        flex-direction: column;
    }
    
    .glitch-text { font-size: 3rem; }
    .dynamic-roles { font-size: 1.5rem; }
    
    .creative-grid {
        grid-template-columns: 1fr;
    }
    .photo-item { grid-row: span 1; }
    
    .hero-image-container, .management-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Add a hamburger menu script later if needed */
    .section { padding: 4rem 1rem; }
}
