.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.prompt-content {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
   display: grid; /*-prompt resmin sağına geçer*/
    grid-template-columns: 60% 40%;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.prompt-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(#5383ff, #5c131f);
    color: #fff;
}

.prompt-info h1 {
    font-size: 28px;
    margin: 0 0 30px 0;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
}

.info-box {
    background: linear-gradient(#324b8a, #000000);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.info-box > div {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-box > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-box strong {
    display: block;
    font-size: 15px;
    color: #d7e527;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 18px;
}

.like-btn {
    background: linear-gradient(#5383ff, #ff3555);
}

.like-btn:hover {
    background: #c0392b;
}

.download-btn {
    background: linear-gradient(#5383ff, #ff3555);
}

.download-btn:hover {
    background: #27ae60;
}

.share-btn {
    background: linear-gradient(#5383ff, #ff3555);
}

.share-btn:hover {
    background: #8e44ad;
}

.similar-images {
    margin-top: 50px;
}

.similar-images h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #d7e527;
}

.similar-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.similar-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.similar-gallery .gallery-item {
    /*grid-column: span 4 !important;benzer-resimler-son*/
}

.similar-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-gallery .gallery-item:hover {
    transform: translateY(-5px);
}

.similar-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.similar-gallery .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.similar-gallery .gallery-item:hover .image-title {
    opacity: 1;
}

@media (max-width: 768px) {
    .prompt-content {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        height: auto;
    }
    
    .similar-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .similar-gallery .gallery-item:nth-child(5n+1),
    .similar-gallery .gallery-item:nth-child(5n+2) {
        grid-column: span 1;
    }

    .action-buttons {
        flex-wrap: wrap;
    }

    .action-btn {
        flex: 1 1 calc(30% - 10px);
    }
}

@media (max-width: 480px) {
    .similar-gallery {
        grid-template-columns: 1fr;
    }
    
    .prompt-info {
        padding: 20px;
    }
    
    .prompt-info h1 {
        font-size: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }
}
