/* Project Detail Dark Pixel Theme */

/* Project Hero Header */
.project-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.project-intro h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 0px #ff77c6,
        4px 4px 0px #7877c6,
        6px 6px 0px rgba(0, 0, 0, 0.5);
}

.project-subtitle {
    font-size: 1.3rem;
    color: #ff77c6;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.project-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-email {
    width: 100%;
    max-width: 400px;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.hero-email:hover {
    transform: scale(1.02);
}

/* Results Highlight Section */
.results-highlight {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 60px 40px;
    margin: 80px 0;
    border: 1px solid #222;
    border-radius: 15px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.results-highlight h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: 
        linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.05), transparent);
    transition: left 0.4s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff77c6;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 119, 198, 0.4);
    position: relative;
    z-index: 2;
}

.stat-label {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Next Steps Section */
.next-steps {
    text-align: center;
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    color: #ffffff;
    padding: 80px 60px;
    border: 1px solid #222;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 119, 198, 0.05) 0%, transparent 70%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(255, 119, 198, 0.01) 1px,
            rgba(255, 119, 198, 0.01) 2px
        );
}

.next-steps h2 {
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
}

.next-steps > p {
    position: relative;
    z-index: 2;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-option {
    background: 
        linear-gradient(145deg, #0f0f0f, #1a1a1a);
    padding: 40px 30px;
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-option:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.cta-option h4 {
    color: #ff77c6;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-option p {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-proof-mini {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.social-proof-mini p {
    color: #888;
    font-style: italic;
    font-size: 1rem;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-cta {
    text-align: left;
}

.footer-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-cta p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #888;
}

.footer-info p:first-child {
    color: #ff77c6;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-nav {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.footer-nav a {
    color: #ff77c6;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #7877c6;
    text-shadow: 0 0 10px rgba(255, 119, 198, 0.3);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-brand a {
    color: #ff77c6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    border-right: 1px solid #222;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 25px;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    position: relative;
    font-size: 0.85rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff77c6, #7877c6);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 119, 198, 0.05);
}

.nav-menu a:hover::before {
    width: 100%;
}
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.project-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-end;
}

.btn-primary {
    background: linear-gradient(45deg, #ff77c6, #7877c6);
    color: #000000;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #7877c6, #ff77c6);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: linear-gradient(45deg, #333, #444);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #444, #555);
    transition: left 0.3s ease;
}

.btn-secondary:hover::before {
    left: 0;
}

.project-detail {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 40px;
}

.project-info {
    margin: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    background: 
        linear-gradient(145deg, #0f0f0f, #1a1a1a);
    padding: 30px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.03), transparent);
    transition: left 0.5s ease;
}

.info-item:hover::before {
    left: 100%;
}

.info-item h4 {
    color: #ff77c6;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.info-item p {
    color: #aaa;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.tech-tag {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 119, 198, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Email Showcase */
.email-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.email-template {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px;
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.email-template::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 119, 198, 0.01) 20px,
            rgba(255, 119, 198, 0.01) 40px
        );
}

.email-preview {
    display: flex;
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.email-preview img {
    max-width: 100%;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.email-preview img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.mobile-preview {
    max-width: 40% !important;
}

.email-details {
    position: relative;
    z-index: 2;
}

.email-details h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-details p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #aaa;
}

.email-details strong {
    color: #ff77c6;
}

.email-metrics {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.metric {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 119, 198, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Store Showcase */
.store-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    padding: 40px;
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.store-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255, 119, 198, 0.02) 1px,
            rgba(255, 119, 198, 0.02) 2px
        );
}

.store-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.store-images img {
    width: 100%;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.store-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.store-details {
    position: relative;
    z-index: 2;
}

.store-details h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-details ul {
    list-style: none;
    padding: 0;
}

.store-details li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    color: #aaa;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.store-details li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff77c6;
    font-size: 0.8rem;
}

.store-details li:last-child {
    border-bottom: none;
}

.store-details strong {
    color: #ff77c6;
}

/* Flow Diagram */
.flow-section {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 40px;
    border: 1px solid #222;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.flow-diagram {
    text-align: center;
    margin: 40px 0;
}

.flow-diagram img {
    max-width: 100%;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.flow-diagram img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.flow-description {
    margin-top: 25px;
    font-style: italic;
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}

/* Code Sections */
.code-section {
    margin: 40px 0;
    background: 
        linear-gradient(145deg, #050505, #0f0f0f);
    border: 1px solid #222;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.code-section h3 {
    color: #ff77c6;
    margin-bottom: 0;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #222;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

pre {
    background: #050505;
    padding: 25px;
    overflow-x: auto;
    margin: 0;
    border: none;
}

code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
}

.code-files {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 30px;
    border: 1px solid #222;
    margin-top: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.code-files h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.file-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.file-link {
    display: block;
    padding: 20px;
    background: 
        linear-gradient(145deg, #0f0f0f, #1a1a1a);
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
    border: 1px solid #222;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    overflow: hidden;
}

.file-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.05), transparent);
    transition: left 0.3s ease;
}

.file-link:hover::before {
    left: 100%;
}

.file-link:hover {
    background: 
        linear-gradient(145deg, #1a1a1a, #222);
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    color: #ff77c6;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.result-card {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.03), transparent);
    transition: left 0.4s ease;
}

.result-card:hover::before {
    left: 100%;
}

.result-card:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 119, 198, 0.1);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff77c6;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 119, 198, 0.3);
    position: relative;
    z-index: 2;
}

.result-label {
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.key-learnings {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 40px;
    border: 1px solid #222;
    margin-top: 60px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.key-learnings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 15px,
            rgba(255, 119, 198, 0.01) 15px,
            rgba(255, 119, 198, 0.01) 30px
        );
}

.key-learnings h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.key-learnings ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.key-learnings li {
    padding: 15px 0;
    border-bottom: 1px solid #222;
    position: relative;
    padding-left: 35px;
    color: #aaa;
    line-height: 1.6;
}

.key-learnings li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff77c6;
    font-weight: bold;
    font-size: 1.1rem;
}

.key-learnings li:last-child {
    border-bottom: none;
}

.next-steps {
    text-align: center;
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    color: #ffffff;
    padding: 80px 60px;
    border: 1px solid #222;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.next-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 119, 198, 0.05) 0%, transparent 70%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(255, 119, 198, 0.01) 1px,
            rgba(255, 119, 198, 0.01) 2px
        );
}

.next-steps h2 {
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.next-steps p {
    position: relative;
    z-index: 2;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.next-steps .btn {
    position: relative;
    z-index: 2;
}

.store-password {
    background: rgba(255, 119, 198, 0.05);
    padding: 10px 15px;
    border: 1px solid rgba(255, 119, 198, 0.2);
    margin: 15px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.store-password strong {
    color: #ff77c6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #222;
        width: 100%;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 20px 30px;
        text-align: center;
    }
    
    .project-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .project-intro h1 {
        font-size: 2.2rem;
    }
    
    .project-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .project-ctas .btn {
        width: 100%;
        text-align: center;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-cta {
        text-align: center;
    }
    
    .footer-cta h3 {
        font-size: 1.6rem;
    }
    
    .contact-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .email-template {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .email-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-preview {
        max-width: 60% !important;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .project-links {
        align-items: flex-start;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .store-showcase {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        padding: 50px 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ADD THIS TO YOUR projects/project-detail.css */

/* Simplified Project Page Header */
.header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 0px #ff77c6,
        4px 4px 0px #7877c6,
        6px 6px 0px rgba(0, 0, 0, 0.5);
}

.header-content p {
    font-size: 1.2rem;
    color: #ff77c6;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-quick-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.store-password {
    background: rgba(255, 119, 198, 0.05);
    padding: 8px 12px;
    border: 1px solid rgba(255, 119, 198, 0.2);
    margin: 0 auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #ff77c6;
    max-width: 200px;
}

/* Project Sections */
.project-section {
    margin-bottom: 80px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.overview-item {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 25px;
    border: 1px solid #222;
    border-radius: 10px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.overview-item h4 {
    color: #ff77c6;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Email Grid */
.email-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.email-item {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.email-item:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 119, 198, 0.1);
}

.email-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.email-item:hover img {
    transform: scale(1.05);
}

.email-info {
    padding: 20px;
}

.email-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-info p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

.email-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.email-stats span {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 119, 198, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Results Highlight */
.results-highlight {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 40px 30px;
    margin: 60px 0;
    border: 1px solid #222;
    border-radius: 15px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: 
        linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 1px solid #222;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff77c6;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 119, 198, 0.4);
}

.stat-label {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Key Learnings */
.key-learnings {
    background: 
        linear-gradient(145deg, #141414, #0f0f0f);
    padding: 30px;
    border: 1px solid #222;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.key-learnings h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.key-learnings ul {
    list-style: none;
    padding: 0;
}

.key-learnings li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    position: relative;
    padding-left: 25px;
    color: #aaa;
    line-height: 1.6;
}

.key-learnings li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff77c6;
    font-weight: bold;
}

.key-learnings li:last-child {
    border-bottom: none;
}

/* CTA Options */
.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cta-option {
    background: 
        linear-gradient(145deg, #0f0f0f, #1a1a1a);
    padding: 25px;
    border: 1px solid #222;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-option:hover {
    border-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.cta-option h4 {
    color: #ff77c6;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-option p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .project-quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .project-quick-links .btn {
        width: 200px;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .email-grid {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
}
