.create-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.create-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.create-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 32px;
}

/* FORM */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-hint {
    color: #666;
    font-weight: 400;
    text-transform: none;
}

.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus {
    border-color: #e8315a;
}

/* COVER UPLOAD */
.cover-upload {
    width: 320px;
    aspect-ratio: 16 / 9;
    background-color: #2a2a2a;
    border: 2px dashed #444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.cover-upload:hover {
    border-color: #e8315a;
}

.cover-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#cover-placeholder {
    color: #666;
    font-size: 13px;
    text-align: center;
    padding: 16px;
}

/* PHOTOS UPLOAD */
.photos-upload {
    width: 100%;
    padding: 32px;
    background-color: #2a2a2a;
    border: 2px dashed #444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.photos-upload:hover {
    border-color: #e8315a;
}

#photos-placeholder {
    color: #666;
    font-size: 14px;
}

.photos-count {
    margin-top: 10px;
    font-size: 13px;
    color: #e8315a;
    font-weight: 600;
}

/* NEXT BUTTON */
.btn-next {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e8315a, #c0203f);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-next:hover {
    opacity: 0.85;
}

/* CONFIGURE STEP */
.configure-header {
    margin-bottom: 32px;
}

.configure-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.configure-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 32px;
}

#configure-preview {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 500px;
    object-fit: contain;
    background-color: transparent;
    border-radius: 12px;
    flex-shrink: 0;
}

.configure-controls {
    flex: 1;
}

/* BPM ROW */
.bpm-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bpm-row input[type="range"] {
    flex: 1;
    accent-color: #e8315a;
    height: 4px;
    cursor: pointer;
}

.bpm-row input[type="number"] {
    width: 80px;
    padding: 8px 12px;
    background-color: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    text-align: center;
}

.bpm-row input[type="number"]:focus {
    border-color: #e8315a;
}

/* LISTEN BUTTON */
.btn-listen {
    margin-top: 12px;
    padding: 10px 20px;
    background-color: #2a2a2a;
    border: 1px solid #e8315a;
    border-radius: 8px;
    color: #e8315a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-listen:hover {
    background-color: #e8315a;
    color: #ffffff;
}

.btn-listen.playing {
    background-color: #e8315a;
    color: #ffffff;
}

/* NAV BUTTONS */
.configure-nav {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-prev-photo,
.btn-next-photo {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-prev-photo {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #ccc;
}

.btn-prev-photo:hover {
    border-color: #e8315a;
    color: #e8315a;
}

.btn-next-photo {
    background: linear-gradient(135deg, #e8315a, #c0203f);
    border: none;
    color: #ffffff;
}

.btn-next-photo:hover {
    opacity: 0.85;
}

/* PUBLISH BUTTON */
.btn-publish {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e8315a, #c0203f);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-publish:hover {
    opacity: 0.85;
}

/* PHOTOS GRID */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.photo-thumb-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: grab;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.photo-thumb-wrapper:hover {
    border-color: #e8315a;
}

.photo-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.photo-thumb-wrapper .photo-number {
    position: absolute;
    bottom: 4px;
    left: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.photo-thumb-wrapper .photo-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.photo-thumb-wrapper:hover .photo-delete {
    opacity: 1;
}

.photo-thumb-wrapper.drag-over {
    border-color: #e8315a;
    opacity: 0.6;
}

/* ADD BUTTON */
.photo-add-btn {
    aspect-ratio: 1;
    border-radius: 8px;
    border: 2px dashed #444;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    color: #666;
    transition: border-color 0.2s, color 0.2s;
}

.photo-add-btn:hover {
    border-color: #e8315a;
    color: #e8315a;
}

/* TAGS */
.tags-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 10px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #2a2a2a;
    border: 1px solid #e8315a;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    color: #fff;
}

.tag-delete {
    background: none;
    border: none;
    color: #e8315a;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    line-height: 1;
}

.tags-suggestions {
    margin-top: 16px;
}

.tags-suggestions-label {
    font-size: 11px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tags-suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-suggestion {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.tag-suggestion:hover {
    border-color: #e8315a;
    color: #fff;
}

.tag-suggestion span {
    font-size: 11px;
    color: #666;
    margin-left: 4px;
}

.tags-suggestions-list {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}