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

:root {
    --primary-color: #00FF41;
    --neon-green: #00FF41;
    --magenta: #E91EFF;
    --purple: #C026D3;
    --accent-color: #E91EFF;
    --text-color: #1F2937;
    --light-gray: #F5F7FA;
    --border-color: #E0E6ED;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #0F0F0F;
    --purple-dark: #8B1F98;
    --purple-medium: #C026D3;
    --purple-light: #E91EFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --neon-shadow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
    --purple-shadow: 0 0 10px rgba(233, 30, 255, 0.5), 0 0 20px rgba(233, 30, 255, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, #000000 0%, #0d000d 50%, #000000 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: var(--black);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--magenta);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand h1 {
    color: var(--neon-green);
    font-size: 2rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    background-color: transparent;
    border: 2px solid var(--neon-green);
}

.nav-link:hover {
    color: var(--black);
    background-color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: var(--neon-shadow);
}

.nav-brand-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

/* Logo Styles */
.logo-link {
    display: inline-block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-5px);
}

.site-logo {
    max-width: 280px;
    height: auto;
    display: block;
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(233, 30, 255, 0.3), 0 0 15px rgba(0, 255, 65, 0.2);
    transition: box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(26, 0, 26, 0.3) 100%);
    padding: 1rem;
}

.logo-link:hover .site-logo {
    box-shadow: 0 12px 40px rgba(233, 30, 255, 0.5), 0 0 25px rgba(0, 255, 65, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A001A 50%, #000000 100%);
    border-radius: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(233, 30, 255, 0.3);
    border: 3px solid var(--magenta);
}

.hero h1 {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--magenta);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 600;
}

.hero p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.company-name {
    font-size: 1.5rem;
    color: var(--magenta);
    font-weight: 700;
    margin: 1.5rem 0;
    opacity: 1 !important;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    text-align: center;
    min-width: 200px;
}

.cta-button.primary {
    background-color: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--magenta);
    box-shadow: var(--purple-shadow);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

.cta-button.secondary:hover {
    background-color: transparent;
    color: var(--magenta);
    box-shadow: var(--purple-shadow);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    min-width: 250px;
}

.cta-section {
    text-align: center;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin: 3rem 0;
    border: 2px solid var(--magenta);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.85;
}

.section-title {
    font-size: 2rem;
    color: var(--neon-green);
    text-align: center;
    margin: 3rem 0 2rem 0;
    font-weight: 700;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--magenta);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(233, 30, 255, 0.3), 0 4px 6px -2px rgba(233, 30, 255, 0.15);
    border: 2px solid var(--magenta);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--magenta);
    font-weight: 700;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--purple);
}

.feature-card p {
    color: var(--text-color);
    line-height: 2;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.feature-card a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card a:hover {
    color: var(--magenta);
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.feature-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.feature-link {
    display: inline;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--magenta);
}

/* Content Section */
.content-section {
    background-color: var(--white);
    padding: 3.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-section h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, var(--neon-green) 0%, var(--magenta) 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 3px;
    padding-bottom: 1rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--magenta);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-section h4 {
    font-size: 1.25rem;
    color: var(--purple);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

.content-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.content-section a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--magenta);
    text-decoration: underline;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

table th {
    background-color: var(--black);
    color: var(--neon-green);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--magenta);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background-color: var(--light-gray);
}

table a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
}

table a:hover {
    color: var(--magenta);
    text-decoration: underline;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(233, 30, 255, 0.3), 0 4px 6px -2px rgba(233, 30, 255, 0.15);
    border: 2px solid var(--magenta);
}

.project-card h3 {
    font-size: 1.5rem;
    color: var(--magenta);
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.project-card .tech-tag {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tech-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(233, 30, 255, 0.15) 100%);
    color: var(--text-color);
    border: 1px solid var(--neon-green);
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.appointment-container {
    text-align: center;
    padding: 2rem 0;
}

.note {
    font-size: 0.95rem;
    opacity: 0.7;
    font-style: italic;
}

/* Blog Posts Styles */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(233, 30, 255, 0.3), 0 4px 6px -2px rgba(233, 30, 255, 0.15);
    border: 2px solid var(--magenta);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-header h2 {
    font-size: 2rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.post-header h2 a {
    color: var(--magenta);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.post-header h2 a:hover {
    color: var(--neon-green);
}

.post-date {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.7;
    white-space: nowrap;
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--magenta) 100%);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.read-more {
    display: inline-block;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.read-more:hover {
    color: var(--magenta);
    transform: translateX(5px);
}

/* Reading List Styles */
.reading-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.reading-section h3 {
    font-size: 1.75rem;
    color: var(--magenta);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--magenta);
    font-weight: 700;
}

.reading-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    padding: 0.75rem 0;
    opacity: 0.85;
}

/* Google Calendar Button Overrides */
.qxCTlb {
    min-height: 56px;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--black);
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--magenta) 100%);
    border: 3px solid var(--neon-green);
    cursor: pointer;
    white-space: nowrap;
    word-break: normal;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5), 0 0 35px rgba(233, 30, 255, 0.4);
    text-transform: uppercase;
    font-size: 1.25rem;
}

.qxCTlb:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.7), 0 0 50px rgba(233, 30, 255, 0.6);
    background: linear-gradient(135deg, var(--magenta) 0%, var(--neon-green) 100%);
    border: 3px solid var(--magenta);
}

.hur54b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 72px;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.mmGMM {
    border: 2px solid var(--magenta);
    border-radius: 1rem;
    background-color: var(--white);
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 40px rgba(233, 30, 255, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
}

.Xfsokf {
    position: fixed;
    top: 26px;
    right: 72px;
    display: flex;
    align-items: center;
    border: 2px solid var(--neon-green);
    border-radius: 2rem;
    background-color: var(--black);
    height: 48px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Xfsokf:hover {
    background-color: var(--neon-green);
    box-shadow: var(--neon-shadow);
}

.Xfsokf:hover .L0Dvsd,
.Xfsokf:hover .uE25ec {
    color: var(--black);
}

.L0Dvsd {
    color: var(--neon-green);
    font-size: 24px;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.uE25ec {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--neon-green);
    transition: color 0.3s ease;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-category {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 0.75rem;
    border-left: 4px solid var(--neon-green);
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-left-color: var(--magenta);
    transform: translateX(5px);
}

.tech-category h4 {
    font-size: 1.1rem;
    color: var(--magenta);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.tech-category p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #1A001A 100%);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid var(--magenta);
}

footer p {
    text-align: center;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

footer ul {
    list-style: none;
    text-align: center;
    margin-top: 1rem;
}

footer ul li {
    display: inline;
    margin: 0 1rem;
}

footer a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--magenta);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h1 {
        font-size: 2rem;
    }

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

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.5rem;
    }

    .site-logo {
        max-width: 220px;
    }

    .logo-link {
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .company-name {
        font-size: 1.25rem;
    }

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

    .cta-section {
        padding: 2.5rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}
