body {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding-top: 80px; /* Header için boşluk */
}

.project-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.project-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.project-header h1 {
    font-size: 2rem;
    margin: 0;
    text-align: center;
}

.project-header .project-subtitle {
    text-align: center;
    margin-top: 0.5rem;
}

.project-content {
    margin-top: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-images, .project-video {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-images img, .project-video video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    margin: 0;
}

.project-images {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-color);
    padding: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-video video {
    border-radius: 5px;
    width: 100%;
    max-width: 480px; /* Video genişliğini azalttık */
    aspect-ratio: 16/9;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* Video oranını koruyarak sığdır */
}

@media (max-width: 768px) {
    .project-content {
        grid-template-columns: 1fr; /* Tek kolon */
        gap: 2rem;
        margin-top: 100px;
    }

    .project-media {
        gap: 1.5rem;
    }

    .project-images img {
        width: 100%;
        height: auto;
    }

    .project-video {
        width: 100%;
    }

    .project-video video,
    .project-video iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-header {
        padding: 1rem;
    }

    .project-header h1 {
        font-size: 1.5rem;
    }

    .project-header .project-subtitle {
        font-size: 0.9rem;
    }

    .project-info h2 {
        font-size: 1.5rem;
    }

    body {
        padding-top: 60px;
    }
}

/* Orta boyutlu ekranlar için */
@media (max-width: 1024px) and (min-width: 769px) {
    .project-content {
        grid-template-columns: 1fr; /* Tek kolon */
        max-width: 800px;
        margin: 100px auto 0;
    }
}

.project-info {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.project-info section {
    margin-bottom: 1rem;
}

.project-info section:last-child {
    margin-bottom: 0;
}

.project-info h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.project-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.project-features ul {
    list-style-type: none;
    padding: 0;
}

.project-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.project-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tech-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tech-tag {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

body > header {
    display: none;
}

@media (max-width: 768px) {
    .game-container iframe {
        /* Bu özellik silinecek */
    }
} 