body {
    background-color: #f8fafc;
}
.aktifitas-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
.alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.alert.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.profile-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-left: 6px solid #2563eb;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.profile-info h2 {
    margin: 0;
    font-size: 1.35rem;
    color: #1e293b;
    font-weight: 700;
}

.profile-info p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-wrapper-premium {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.form-header-premium {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 30px 40px;
    color: white;
}

.form-header-premium h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-header-premium p {
    margin: 8px 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.form-body-premium {
    padding: 40px;
}

.form-row-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.input-group-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group-premium label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.input-with-icon-premium {
    position: relative;
}

.input-with-icon-premium i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}

.input-with-icon-premium select, 
.input-with-icon-premium input,
.input-with-icon-premium textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
}

.input-with-icon-premium select:focus, 
.input-with-icon-premium input:focus,
.input-with-icon-premium textarea:focus {
    outline: none;
    border-color: #2563eb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-with-icon-premium select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.textarea-premium {
    padding: 0.75rem 1rem !important;
    min-height: 100px;
    resize: vertical;
}

/* Upload Grid */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 1.5rem;
}

.upload-dashed-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.upload-dashed-zone:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.upload-dashed-zone i.upload-icon {
    font-size: 2.2rem;
    color: #94a3b8;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.upload-dashed-zone:hover i.upload-icon {
    color: #2563eb;
}

.upload-dashed-zone span.title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
}

.upload-dashed-zone span.desc {
    font-size: 0.75rem;
    color: #94a3b8;
}

.upload-dashed-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Photo Preview */
.photo-preview-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    z-index: 12;
}

.remove-photo:hover {
    transform: scale(1.1);
}

/* Video Upload Section */
.video-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.video-upload-zone:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.video-upload-zone i.video-icon {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.video-upload-zone:hover i.video-icon {
    color: #2563eb;
}

.video-upload-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.video-preview-container {
    margin-top: 15px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #cbd5e1;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.video-preview-container video {
    border-radius: 8px;
    max-width: 100%;
    max-height: 240px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.video-details-info {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

.btn-submit-premium {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

@media (max-width: 768px) {
    .form-body-premium { padding: 25px; }
    .profile-card { flex-direction: column; text-align: center; }
    .form-row-premium { flex-direction: column; gap: 0; }
    .upload-grid { grid-template-columns: 1fr; }
}

/* Responsive File Size Modal */
.file-size-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.file-size-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.file-size-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #f1f5f9;
}
.file-size-modal-overlay.active .file-size-modal-card {
    transform: scale(1);
}
.file-size-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.file-size-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.file-size-modal-icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    border: 2px solid #fee2e2;
}
.file-size-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.file-size-modal-message {
    font-size: 0.925rem;
    color: #475569;
    margin: 0 0 16px;
    line-height: 1.5;
}
.file-size-modal-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #334155;
    text-align: left;
}
.file-size-modal-details div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}
.file-size-modal-details div:last-child {
    margin-bottom: 0;
}
.file-size-modal-details .detail-label {
    color: #64748b;
}
.file-size-modal-details .detail-value {
    font-weight: 600;
}
.file-size-modal-details .detail-value.exceeded {
    color: #dc2626;
}
.file-size-modal-btn {
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}
.file-size-modal-btn:hover {
    background: #b91c1c;
}
.file-size-modal-btn:active {
    transform: scale(0.98);
}
@media (max-width: 480px) {
    .file-size-modal-card {
        padding: 24px 18px 20px;
        border-radius: 16px;
    }
    .file-size-modal-title {
        font-size: 1.15rem;
    }
    .file-size-modal-message {
        font-size: 0.875rem;
    }
}
