.project-detail-section {
    padding: 0;
}

.project-hero {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #00d9ff;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #00f0ff;
    transform: translateX(-5px);
    display: inline-block;
}

.project-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.project-subtitle {
    font-size: 1.8em;
    color: #00d9ff;
    opacity: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.project-description {
    font-size: 1.2em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 1.1em;
    color: #00d9ff;
}

.meta-item i {
    margin-right: 8px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cyber-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
}

.cyber-button.primary {
    background: #00d9ff;
    color: #0a0e27;
    border: 2px solid #00d9ff;
}

.cyber-button.primary:hover {
    background: #00b8d4;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

.cyber-button.secondary {
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
}

.cyber-button.secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.overview-section {
    padding: 60px 20px;
    background: rgba(0, 217, 255, 0.03);
}

.overview-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.overview-card:hover {
    border-color: #00d9ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.overview-icon {
    font-size: 3.5em;
    color: #00d9ff;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.8em;
    color: #00d9ff;
    margin-bottom: 15px;
}

.overview-card p {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.7;
}

.tech-section,
.features-section,
.gallery-section,
.private-notice-section,
.workflow-section,
.technical-highlights-section,
.architecture-section,
.comparison-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5em;
    color: #00d9ff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

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

.tech-item {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: #00d9ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.tech-item i {
    color: #00d9ff;
    font-size: 1.5em;
}

.tech-item span {
    font-size: 1.1em;
    color: var(--ghost-cosmiclatte);
}

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

.feature-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00d9ff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-icon {
    font-size: 3em;
    color: #00d9ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.feature-title {
    font-size: 1.6em;
    color: #00d9ff;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 1.1em;
    color: var(--ghost-whiteice);
    line-height: 1.6;
}

.workflow-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00d9ff, rgba(0, 217, 255, 0.3));
}

.workflow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(26, 31, 58, 0.8);
    border: 3px solid #00d9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 900;
    color: #00d9ff;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.step-content {
    flex: 1;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: #00d9ff;
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.8em;
    color: #00d9ff;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.7;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    border-color: #00d9ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.highlight-card h3 {
    font-size: 1.6em;
    color: #00d9ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-card h3 i {
    font-size: 1.2em;
}

.highlight-card p {
    font-size: 1.05em;
    color: var(--ghost-white);
    line-height: 1.7;
}

/* Architecture Section Styles (NEW!) */
.architecture-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.arch-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.arch-layer {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.arch-layer h4 {
    color: var( --ghost-springgreen);
    font-size: 1.4em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arch-components {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.arch-tag {
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: #00d9ff;
    font-size: 0.9em;
    font-weight: 600;
}

.arch-arrow {
    text-align: center;
    font-size: 2em;
    color: var(--ghost-cyan);
    margin: -10px 0;
}

.arch-description {
    background: rgba(10, 14, 39, 0.5);
    border-left: 3px solid #00d9ff;
    padding: 20px;
    border-radius: 4px;
}

.arch-description p {
    color: var(--ghost-cosmiclatte);
    line-height: 1.8;
    margin: 0;
}

.arch-description strong {
    color: #00d9ff;
}

/* Comparison Section Styles (NEW!) */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.comparison-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 35px;
}

.comparison-card h4 {
    color: #00d9ff;
    font-size: 1.6em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    color: var(--ghost-white);
    line-height: 1.9;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card strong {
    color: var( --ghost-springgreen);
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: #00d9ff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.private-notice-section {
    background: rgba(26, 31, 58, 0.3);
}

.notice-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(153, 102, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.notice-icon {
    font-size: 4em;
    color: #9966ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(153, 102, 255, 0.8);
}

.notice-card h3 {
    font-size: 2em;
    color: #9966ff;
    margin-bottom: 20px;
}

.notice-card p {
    font-size: 1.2em;
    color: var(--ghost-white);
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2.5em;
    }

    .features-grid,
    .gallery-grid,
    .highlights-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .project-meta {
        flex-direction: column;
        gap: 15px;
    }

    .workflow-timeline::before {
        left: 35px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5em;
    }

    .workflow-step {
        gap: 20px;
    }

    .arch-diagram {
        font-size: 0.9em;
    }

    .arch-arrow {
        font-size: 1.5em;
    }
}

.gallery-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid var(--ghost-cyan);
    border-radius: 16px;
    padding: 40px;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 217, 255, 0.15);
    border: 2px solid var( --ghost-springgreen);
    color: var( --ghost-springgreen);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.5em;
}

.gallery-nav:hover {
    background: rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav.prev {
    left: -30px;
}

.gallery-nav.next {
    right: -30px;
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 217, 255, 0.05);
}

.gallery-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
    box-shadow: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.3);
    border: 2px solid rgba(0, 217, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot:hover {
    background: rgba(0, 217, 255, 0.5);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: #00d9ff;
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
    transform: scale(1.3);
}

.gallery-counter {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    color: #00d9ff;
    font-family: 'Courier New', monospace;
}

.gallery-caption {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: rgba(10, 14, 39, 0.5);
    border-left: 3px solid #00d9ff;
    border-radius: 4px;
}

.gallery-caption h3 {
    color: var( --ghost-springgreen);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: var(--ghost-white);
    line-height: 1.6;
    font-size: 1.05em;
}

.keyboard-hint {
    text-align: center;
    margin-top: 20px;
    color: var(--ghost-springgreen);
    font-size: 0.95em;
    font-style: italic;
}

.keyboard-hint i
{
    margin: 0 5px;
}
