:root {
    --dark-purple: #4a148c;
    --darker-purple: #311b92;
    --light-grey: #e0e0e0;
    --dark-grey: #424242;
    --darker-grey: #212121;
    --orange-pop: #ff6f00;
    --orange-hover: #ff8f00;
    --bg-dark: #1a1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #9e9e9e;
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--dark-purple);
}

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

.nav-logo {
    font-size: 1.5rem;
    color: var(--orange-pop);
    font-weight: bold;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--orange-pop);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--darker-purple) 100%);
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.glitch {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--orange-pop);
    letter-spacing: 5px;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            2px 0 var(--dark-purple),
            -2px 0 var(--orange-pop),
            0 0 10px var(--orange-pop);
    }
    50% {
        text-shadow: 
            -2px 0 var(--dark-purple),
            2px 0 var(--orange-pop),
            0 0 20px var(--orange-pop);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--text-primary);
}

.hero-description {
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--orange-pop);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.4);
}

.btn-secondary {
    border: 2px solid var(--orange-pop);
    color: var(--orange-pop);
}

.btn-secondary:hover {
    background-color: var(--orange-pop);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--darker-grey);
}

.about h2 {
    font-size: 2.5rem;
    color: var(--orange-pop);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills {
    margin-top: 3rem;
}

.skills h3 {
    color: var(--orange-pop);
    margin-bottom: 1.5rem;
}

.skill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background-color: var(--dark-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--orange-pop);
    transition: all 0.3s;
}

.skill-tag:hover {
    background-color: var(--orange-pop);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.projects h2 {
    font-size: 2.5rem;
    color: var(--orange-pop);
    margin-bottom: 3rem;
    text-align: center;
}

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

.project-card {
    background-color: var(--darker-grey);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--dark-purple);
    transition: all 0.3s;
}

.project-card:hover {
    border-color: var(--orange-pop);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
}

.project-card h3 {
    color: var(--orange-pop);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--dark-purple);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* Featured Project Section */
.section-subtitle {
    font-size: 2rem;
    color: var(--orange-pop);
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.featured-project {
    background: linear-gradient(135deg, var(--darker-grey) 0%, var(--dark-purple) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--orange-pop);
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 111, 0, 0.2);
}

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

.featured-header h3 {
    font-size: 2rem;
    color: var(--orange-pop);
    margin: 0;
}

.project-status {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.status-badge {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid #4caf50;
}

.status-badge.production {
    background-color: rgba(255, 111, 0, 0.2);
    color: var(--orange-pop);
    border: 1px solid var(--orange-pop);
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-col h4 {
    color: var(--orange-pop);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-col ul {
    list-style: none;
    padding: 0;
}

.feature-col li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(74, 20, 140, 0.3);
}

.feature-col li:last-child {
    border-bottom: none;
}

.feature-col strong {
    color: var(--text-primary);
}

.tech-stack {
    margin-bottom: 2rem;
}

.tech-stack h4 {
    color: var(--orange-pop);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tech-tag {
    background-color: var(--darker-grey);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid var(--dark-purple);
    transition: all 0.3s;
}

.tech-tag:hover {
    background-color: var(--dark-purple);
    border-color: var(--orange-pop);
    transform: translateY(-2px);
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-card {
    background-color: var(--darker-grey);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--dark-purple);
    transition: all 0.3s;
}

.highlight-card:hover {
    border-color: var(--orange-pop);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.3);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--orange-pop);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-footer {
    border-top: 2px solid var(--dark-purple);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.security-note {
    background-color: rgba(255, 111, 0, 0.1);
    border-left: 4px solid var(--orange-pop);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-note strong {
    color: var(--orange-pop);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--darker-grey);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--orange-pop);
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--dark-purple);
    color: var(--text-secondary);
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .featured-project {
        padding: 1.5rem;
    }

    .featured-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-header h3 {
        font-size: 1.5rem;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .project-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-number {
        font-size: 2rem;
    }
}
