/* 프로필 수정 페이지 스타일 */
.profile-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .profile-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .profile-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .profile-header p {
    color: var(--text-secondary);
    font-size: 1rem;
  }
  
  .profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
  }
  
  /* 프로필 이미지 섹션 */
  .profile-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--accent-primary);
    box-shadow: var(--shadow-neon);
  }
  
  .profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
  }
  
  .profile-image-container:hover .profile-image-overlay {
    opacity: 1;
  }
  
  .upload-btn {
    width: 50px;
    height: 50px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-speed);
  }
  
  .upload-btn:hover {
    background-color: var(--accent-secondary);
    transform: scale(1.1);
  }
  
  .upload-btn i {
    color: #000;
    font-size: 20px;
  }
  
  .profile-image-hint {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  /* 프로필 폼 섹션 */
  .profile-form-section {
    width: 100%;
  }
  
  .profile-form {
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-speed);
  }
  
  .form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(255, 177, 0, 0.3);
  }
  
  .form-group input::placeholder {
    color: var(--text-tertiary);
  }
  
  .form-group input:read-only {
    background-color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
  }
  
  .form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-tertiary);
    font-size: 0.8rem;
  }
  
  .form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
  }
  
  .form-divider::before,
  .form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
  }
  
  .form-divider span {
    padding: 0 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
  }
  
  .form-message {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    text-align: center;
  }
  
  .form-message.success {
    background-color: rgba(79, 255, 122, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
  }
  
  .form-message.error {
    background-color: rgba(255, 79, 79, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
  }
  
  /* 반응형 디자인 */
  @media (max-width: 768px) {
    .profile-content {
      grid-template-columns: 1fr;
    }
    
    .profile-image-section {
      margin-bottom: 30px;
    }
    
    .profile-image-container {
      width: 150px;
      height: 150px;
    }
    
    .profile-container {
      margin: 20px auto;
    }
    
    .profile-header h1 {
      font-size: 2rem;
    }
  }
  