.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    background: var(--bg-color);
    color: var(--text-color);
}

.details-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.details-header h1 {
    margin-left: 2rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.details-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.details-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.details-image:hover img {
    transform: scale(1.02);
}

.details-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.details-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.details-text h3 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.details-text p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.details-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.details-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .details-content {
        grid-template-columns: 1fr;
    }

    .details-image {
        max-width: 800px;
        margin: 0 auto;
    }
}

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

    .details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .details-header h1 {
        margin-left: 0;
        font-size: 2rem;
    }

    .details-text {
        padding: 1.5rem;
    }

    .details-text h2 {
        font-size: 1.8rem;
    }

    .details-text h3 {
        font-size: 1.3rem;
    }
}

/* Metrics Table Styles */
.metrics-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.metrics-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.metrics-table th,
.metrics-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-table th {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-color);
    font-weight: 600;
}

.metrics-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.tech-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tech-item h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tech-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.tech-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Parameters Grid Styles */
.parameters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.parameter-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.parameter-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.parameter-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.parameter-item p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.parameter-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Processing Steps Styles */
.processing-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Workflow Timeline Styles */
.workflow-timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Security Features Styles */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.security-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.security-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* File Structure Styles */
.file-structure {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    overflow-x: auto;
}

.file-structure pre {
    margin: 0;
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step,
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-item:not(:last-child)::after {
        left: 20px;
        top: 40px;
        bottom: -20px;
    }

    .metrics-table th,
    .metrics-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .parameter-item,
    .security-item {
        padding: 1rem;
    }
}

/* Animation for timeline items */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

/* Add these styles to the existing CSS file */

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

.metric-image {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.metric-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.metric-image img:hover {
    transform: scale(1.02);
}

.metric-image p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.architecture-diagram {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.architecture-diagram:hover {
    transform: scale(1.02);
}

/* Responsive adjustments for metrics images */
@media (max-width: 768px) {
    .metrics-images {
        grid-template-columns: 1fr;
    }

    .metric-image {
        padding: 1rem;
    }
}

/* Interface features styles */
.interface-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.feature-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.key-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.key-feature h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.key-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
} 