body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-y: auto;
    background-color: #121212;
    color: #ffffff;
}

.container {
    text-align: center;
    margin: 60px auto;
    padding: 3rem;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #333;
}

.card-container {
    max-width: 500px; 
    width: 100%;
    background-color: #000000;      
}

h1 { 
    color: #0a3937; 
    margin-bottom: 0.5rem;
}

p { 
    font-size: 1.2rem; 
    color: #7b6644;
}

.status-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: #e7f3ff9f;
    color: #0a3937;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none; 
    transition: all 0.2s ease; 
}

.status-tag:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2); 
    color: white
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;  
    margin-top: 2rem;
}

.gallery-img {
    
    flex: 1 1 250px; 
    max-width: 400px; 

    
    aspect-ratio: 9 / 16; 
    
    
    object-fit: cover;

    
    border-radius: 15px;
    border: 2px solid #333;
    transition: transform 0.3s ease;
    background-color: #000; 
}

@media (max-width: 600px) {
    body {
        display: block; 
        padding: 20px 0; 
    }

    .container {
        
        width: 90%;      
        margin: 20px auto; 
        
        padding: 1.5rem;   
        box-sizing: border-box; 
    }

    .gallery-img {
        
        flex: 1 1 100%; 
        max-width: 100%;
    }
}