/* ==========================================
   GELECEK PROJE SAYFASI ÖZEL STİLLER
   ========================================== */

/* Future Project Container */
.container {
    max-width: 1000px;
}

/* Status Badge Merkezleme */
.status-center {
    text-align: center;
    margin-bottom: 30px;
}

/* Mysterious Title */
.mysterious-title {
    color: #667eea;
    font-size: 3rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(102, 126, 234, 0.2);
    margin-bottom: 30px;
}

/* Mystery Text */
.mystery-text {
    color: #666;
    font-size: 1.2rem;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
    font-style: italic;
}

/* Secret Image */
.secret-image {
    max-width: 100%;
    height: auto;
    border: 3px solid #667eea;
    box-shadow: 6px 6px 0px rgba(0,0,0,0.2);
    margin: 30px auto;
    display: block;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mysterious-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }

    .secret-image {
        max-width: 90%;
    }
}