.shots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.shot {
    background: rgba(26, 0, 51, 0.95);
    border: 2px solid var(--shot-color);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.shot:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5);
    border-color: var(--neon-cyan);
}

.shot h3 {
    color: var(--neon-cyan);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.shot-content {
    margin-top: 10px;
}

.shot-detail {
    margin-bottom: 8px;
}

.shot-detail-label {
    font-weight: bold;
    color: var(--secondary-color);
}

.shot-image {
    margin: 10px 0;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    overflow: hidden;
}

.shot-image img {
    width: 100%;
    height: auto;
    display: block;
}

.shot-prompt {
    margin-top: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-left: 3px solid var(--neon-cyan);
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    word-wrap: break-word;
}