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

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-block: #111111;
    --accent-green: #00ff88;
    --accent-green-dark: #00cc6f;
    --accent-green-light: #33ffaa;
    --accent-cyan: #00ffff;
    --accent-cyan-dark: #00cccc;
    --accent-cyan-light: #33ffff;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --border-color: rgba(0, 255, 255, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Baskervville', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--accent-green);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-green);
}

.cta-button:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.profile-section {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profile-image-wrapper {
    flex-shrink: 0;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 50%, var(--accent-cyan-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2), 0 10px 40px rgba(0, 255, 136, 0.2);
}

.profile-placeholder {
    font-family: 'Baskervville', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--bg-primary);
    letter-spacing: 1px;
}

.profile-text {
    flex: 1;
    min-width: 300px;
    padding-left: 2rem;
}

.greeting {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.name {
    font-family: 'Baskervville', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.title {
    font-family: 'Baskervville', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.title-highlight {
    color: var(--accent-green);
}

.bio {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 650px;
    margin-top: 1rem;
}

/* Companies Section */
.companies {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.companies-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.company-logo {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.company-logo:hover {
    color: var(--accent-cyan);
    opacity: 1;
}

.company-logo:nth-child(even):hover {
    color: var(--accent-green);
}

/* About Section */
.about {
    padding: 8rem 0;
}

.section-content {
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: 'Baskervville', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 4rem;
    color: var(--accent-green);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-text {
    background-color: var(--bg-block);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.skills h3 {
    font-family: 'Baskervville', serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--accent-green);
    font-weight: 400;
    font-style: italic;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.skill-category {
    background-color: var(--bg-block);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.skill-category h4 {
    color: var(--accent-cyan);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.skill-category p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Podcast Section */
.podcast {
    padding: 8rem 0;
    border-top: 1px solid var(--border-color);
}

.podcast .section-title {
    color: var(--accent-green);
}

.podcast-content {
    background-color: var(--bg-block);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.podcast-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.contact .contact-title {
    color: var(--accent-green);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5rem;
}

.contact-title {
    font-family: 'Baskervville', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    flex: 1;
    min-width: 200px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-block);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-info p {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-cyan-light);
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-text {
        padding-left: 0;
    }

    .name {
        font-size: 2rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .section-title,
    .contact-title {
        font-size: 2rem;
    }

    .about-text,
    .contact-info,
    .podcast-content {
        padding: 2rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }

    .companies-grid {
        justify-content: center;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-placeholder {
        font-size: 3rem;
    }

    .name {
        font-size: 1.5rem;
    }

    .title {
        font-size: 1.5rem;
    }
}

