/* 
 * RostPack Package Styles
 * 
 * ВАЖНО: ВСЕ стили должны быть в этом файле!
 * НЕ добавлять inline стили в Blade-шаблоны!
 * Используйте только CSS классы и Tailwind CSS.
 */

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #4a90e2 0%, #7bb3f0 50%, #a8d0f0 100%);
    color: #2c3e50;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
  }
  .main {
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 0;
    margin: 5px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #4c7fb1 0%, #4f7ca8 100%);
    margin-bottom: 0;
  }
  .profile {
    display: flex;
    align-items: center;
  }
  .avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    color: white;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  .display_name {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  
  /* Контейнер профиля */
  .profile-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  /* Выпадающее меню */
  .profile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 8px 0;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
  }
  
  .profile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .menu-item:hover {
    background-color: #f8f9fa;
  }
  
  .menu-item.logout {
    color: #e74c3c;
  }
  
  .menu-item.logout:hover {
    background-color: #fdf2f2;
  }
  
  .menu-icon {
    margin-right: 10px;
    font-size: 16px;
  }
  
  .menu-item-form {
    width: 100%;
  }
  .coins {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #f39c12;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  .coins span {
    margin-left: 8px;
  }
  .coins img {
    width: 35px;
    height: 35px;
  }
  main {
    padding: 10px;
  }
  .totem {
    width: 308px;
    height: 308px;
    border-radius: 50%;
    border: 12px solid #ffb43d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
  }
  .totem img {
    width: 75%;
    height: auto;
  }
  .stat {
    margin: 0;
  }
  .stat span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #34495e;
  }
  .stat-value {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
  }
  .bar {
    background: #e8f4fd;
    border-radius: 12px;
    overflow: hidden;
    height: 16px;
    display: flex;
    align-items: center;
    border: 1px solid #d5e8f7;
  }
  .bar-fill {
    height: 16px;
    background: linear-gradient(90deg, #3498db 0%, #5dade2 100%);
    border-radius: 12px;
    transition: width 0.3s ease;
  }
  .footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    padding: 10px 15px;
    background: linear-gradient(135deg, #cadff3 0%, #a4ccf3 100%);
  }
  .footer button {
    background: linear-gradient(135deg, #2974aa 0%, #4387b4 100%);
    border: none;
    border-radius: 15px;
    flex: 1;
    margin: 0 3px;
    padding: 7px 2px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
  }
  .footer button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  }

