.wizard-glass-section {
    position: relative;
    padding: 0 0 48px 0;
    z-index: 1;
  }
  .wizard-glass-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #7b1fa2 0%, #6c63ff 100%);
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
  }
  .wizard-glass-card {
    position: relative;
    background: rgba(255,255,255,0.65);
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 #7b1fa222, 0 1.5px 8px #6c63ff22;
    backdrop-filter: blur(12px);
    padding: 38px 32px 32px 32px;
    margin: 0 auto;
    max-width: 980px;
    z-index: 2;
    overflow: visible;
  }
  .wizard-stepper {
    margin-bottom: 32px;
  }
  .wizard-stepper-bar {
    width: 100%; height: 7px;
    background: #ececff;
    border-radius: 6px;
    position: relative;
    margin-bottom: 8px;
  }
  .wizard-stepper-progress {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #7b1fa2 0%, #6c63ff 100%);
    border-radius: 6px;
    transition: width 0.5s cubic-bezier(.77,0,.18,1);
  }
  .wizard-stepper-labels {
    display: flex;
    justify-content: space-between;
    font-size: 1.08rem;
    font-weight: 600;
    color: #8b8fae;
  }
  .step-label.active {
    color: #7b1fa2;
  }
  .wizard-glass-steps {
    min-height: 340px;
  }
  .wizard-glass-step {
    display: none;
    animation: fadeInStep 0.7s cubic-bezier(.77,0,.18,1);
  }
  .wizard-glass-step.active {
    display: block;
  }
  @keyframes fadeInStep {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
  }
  .wizard-glass-title {
    font-size: 2rem;
    font-weight: 800;
    color: #23234c;
    margin-bottom: 28px;
    text-align: center;
  }
  .score-type-glass-group {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 18px;
  }
  .score-type-glass-card {
    background: rgba(255,255,255,0.35);
    border-radius: 18px;
    box-shadow: 0 2px 16px #a18fff22;
    padding: 32px 28px 24px 28px;
    min-width: 120px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
    border: 2.5px solid transparent;
    position: relative;
    user-select: none;
  }
  .score-type-glass-card:hover, .score-type-glass-card.selected {
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 8px 32px #7b1fa244;
    background: rgba(255,255,255,0.55);
    border: 2.5px solid #7b1fa2;
    z-index: 2;
  }
  .score-type-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px #a18fff33);
  }
  .score-type-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7b1fa2;
    margin-bottom: 4px;
  }
  .score-type-desc {
    font-size: 1.01rem;
    color: #8b8fae;
  }
  .wizard-glass-filters {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .wizard-glass-search {
    border: none;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 1.08rem;
    box-shadow: 0 1.5px 8px #a18fff11;
    min-width: 220px;
    outline: none;
    transition: box-shadow 0.18s;
  }
  .wizard-glass-search:focus {
    box-shadow: 0 2px 16px #7b1fa222;
  }
  .wizard-glass-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .chip {
    background: rgba(123,31,162,0.09);
    color: #7b1fa2;
    border-radius: 16px;
    padding: 6px 16px;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    border: 1.5px solid transparent;
  }
  .chip.active {
    background: linear-gradient(90deg, #7b1fa2 0%, #6c63ff 100%);
    color: #fff;
    border: 1.5px solid #7b1fa2;
  }
  .wizard-glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 18px;
  }
  .program-glass-card {
    background: rgba(255,255,255,0.7);
    border-radius: 18px;
    box-shadow: 0 2px 16px #a18fff22;
    padding: 24px 22px 18px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.18s, transform 0.18s;
    border: 2px solid transparent;
    min-height: 180px;
    overflow: hidden;
  }
  .program-glass-card:hover {
    box-shadow: 0 8px 32px #7b1fa244;
    border: 2px solid #7b1fa2;
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
  }
  .program-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
  }
  .program-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b1fa2 0%, #6c63ff 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #a18fff22;
  }
  .program-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #23234c;
  }
  .program-university {
    font-size: 1.01rem;
    color: #7b1fa2;
    font-weight: 600;
  }
  .program-details-row {
    display: flex;
    gap: 18px;
    margin: 8px 0 0 0;
    flex-wrap: wrap;
  }
  .program-detail {
    font-size: 0.98rem;
    color: #8b8fae;
    background: #f3f3fa;
    border-radius: 8px;
    padding: 4px 10px;
    font-weight: 500;
  }
  .program-main-stats {
    display: flex;
    gap: 18px;
    margin: 10px 0 0 0;
    flex-wrap: wrap;
  }
  .program-stat {
    font-size: 1.08rem;
    color: #23234c;
    font-weight: 700;
    background: #ececff;
    border-radius: 8px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .program-actions {
    position: absolute;
    top: 16px; right: 18px;
    display: flex;
    gap: 8px;
  }
  .program-action-btn {
    background: rgba(123,31,162,0.09);
    color: #7b1fa2;
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
  }
  .program-action-btn:hover {
    background: #7b1fa2;
    color: #fff;
  }
  .program-detail-toggle {
    margin-top: 10px;
    color: #6c63ff;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.18s;
  }
  .program-detail-toggle:hover {
    color: #7b1fa2;
  }
  .program-details-extra {
    display: none;
    margin-top: 10px;
    background: #f8f9ff;
    border-radius: 10px;
    padding: 10px 14px;
    color: #23234c;
    font-size: 0.97rem;
    box-shadow: 0 1.5px 8px #a18fff11;
  }
  .program-details-extra.open {
    display: block;
    animation: fadeInStep 0.5s;
  }
  .wizard-glass-info {
    background: rgba(255,255,255,0.7);
    color: #7b1fa2;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.97rem;
    margin-top: 12px;
    text-align: center;
  }
  @media (max-width: 900px) {
    .wizard-glass-card {
      padding: 18px 4px;
    }
    .score-type-glass-group {
      gap: 12px;
    }
    .wizard-glass-grid {
      gap: 12px;
    }
  }
  @media (max-width: 600px) {
    .wizard-glass-card {
      padding: 8px 0;
    }
    .score-type-glass-card {
      padding: 14px 6px 10px 6px;
      min-width: 80px;
      min-height: 100px;
    }
    .wizard-glass-title {
      font-size: 1.2rem;
    }
    .wizard-glass-grid {
      grid-template-columns: 1fr;
    }
  }
  .wizard-glass-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .wizard-glass-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #7b1fa2;
    letter-spacing: -1px;
    margin-bottom: 8px;
    text-shadow: 0 2px 16px #a18fff22;
  }
  .wizard-glass-subtitle {
    font-size: 1.15rem;
    color: #6c63ff;
    font-weight: 500;
    margin-bottom: 0;
  }
  
  
  
  .university-guide-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .guide-header {
      margin-bottom: 60px;
  }
  
  .guide-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(108, 99, 255, 0.1);
      color: #6c63ff;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 20px;
  }
  
  .guide-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 15px;
  }
  
  .guide-subtitle {
      font-size: 1.1rem;
      color: #6c757d;
      max-width: 600px;
      margin: 0 auto;
  }
  
  .guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
  }
  
  .guide-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }
  
  .guide-card:hover {
      transform: translateY(-5px);
  }
  
  .card-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .guide-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 20px;
  }
  
  .guide-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .guide-list li {
      margin-bottom: 12px;
  }
  
  .guide-list a {
      color: #6c757d;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.2s ease;
  }
  
  .guide-list a:hover {
      color: #6c63ff;
  }
  
  .guide-list a::before {
      content: "→";
      margin-right: 10px;
      color: #6c63ff;
  }
  
  @media (max-width: 768px) {
      .university-guide-section {
          padding: 60px 0;
      }
  
      .guide-title {
          font-size: 2rem;
      }
  
      .guide-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  
      .guide-card {
          padding: 25px;
      }
  }
  
  
  
  .live-trends-section {
      position: relative;
      padding: 100px 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
      overflow: hidden;
  }
  
  .trends-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
  }
  
  .particles-container {
      position: absolute;
      width: 100%;
      height: 100%;
  }
  
  .particle {
      position: absolute;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      animation: particleFloat 6s ease-in-out infinite;
  }
  
  .particle:nth-child(1) {
      width: 20px;
      height: 20px;
      top: 20%;
      left: 20%;
      animation-delay: 0s;
  }
  
  .particle:nth-child(2) {
      width: 15px;
      height: 15px;
      top: 60%;
      left: 80%;
      animation-delay: 2s;
  }
  
  .particle:nth-child(3) {
      width: 25px;
      height: 25px;
      top: 80%;
      left: 10%;
      animation-delay: 4s;
  }
  
  .particle:nth-child(4) {
      width: 12px;
      height: 12px;
      top: 30%;
      right: 30%;
      animation-delay: 1s;
  }
  
  .particle:nth-child(5) {
      width: 18px;
      height: 18px;
      bottom: 20%;
      right: 10%;
      animation-delay: 3s;
  }
  
  @keyframes particleFloat {
      0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
      50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
  }
  
  .wave-animation {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
  }
  
  .wave-animation svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 120px;
      animation: waveMove 10s ease-in-out infinite;
  }
  
  .wave-animation path {
      fill: rgba(255,255,255,0.1);
  }
  
  @keyframes waveMove {
      0%, 100% { transform: translateX(0px); }
      50% { transform: translateX(-50px); }
  }
  
  .trends-header-new {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 60px;
      gap: 40px;
      position: relative;
      z-index: 10;
  }
  
  .trends-badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      padding: 8px 20px;
      color: white;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 15px;
  }
  
  .trends-title-new {
      font-size: 3.2rem;
      font-weight: 900;
      color: white;
      margin: 0 0 15px 0;
      line-height: 1.1;
      background: linear-gradient(45deg, #fff, #f0f8ff);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  
  .trends-desc {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.9);
      margin: 0;
      max-width: 500px;
      line-height: 1.6;
  }
  
  .header-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-end;
  }
  
  .live-counter {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 20px;
      padding: 15px 25px;
  }
  
  .counter-icon {
      font-size: 2rem;
      filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
  }
  
  .counter-number {
      display: block;
      font-size: 2rem;
      font-weight: 900;
      color: white;
      line-height: 1;
  }
  
  .counter-label {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
      margin-top: 2px;
  }
  
  .update-indicator {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.9);
      font-size: 0.9rem;
      font-weight: 600;
  }
  
  .pulse-ring {
      width: 12px;
      height: 12px;
      background: #4CAF50;
      border-radius: 50%;
      position: relative;
  }
  
  .pulse-ring::before {
      content: '';
      position: absolute;
      top: -4px;
      left: -4px;
      right: -4px;
      bottom: -4px;
      border: 2px solid #4CAF50;
      border-radius: 50%;
      animation: pulseRing 2s ease-out infinite;
  }
  
  @keyframes pulseRing {
      0% { transform: scale(0.8); opacity: 1; }
      100% { transform: scale(1.4); opacity: 0; }
  }
  
  .trends-dashboard {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
      position: relative;
      z-index: 10;
  }
  
  .main-trending-panel {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border-radius: 25px;
      box-shadow: 0 25px 80px rgba(0,0,0,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      overflow: hidden;
  }
  
  .panel-header {
      padding: 30px 35px 25px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .panel-header h3 {
      margin: 0;
      font-size: 1.4rem;
      font-weight: 800;
      color: #2c3e50;
  }
  
  .time-filters {
      display: flex;
      gap: 5px;
      background: #f8f9fa;
      border-radius: 15px;
      padding: 5px;
  }
  
  .time-btn {
      padding: 8px 16px;
      border: none;
      background: transparent;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #6c757d;
      cursor: pointer;
      transition: all 0.2s ease;
  }
  
  .time-btn.active {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  
  .trending-grid {
      padding: 25px 35px 35px;
  }
  
  .trending-university-card {
      display: flex;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
  }
  
  .trending-university-card:hover {
      background: linear-gradient(135deg, #f8f9ff, #ffffff);
      margin: 0 -20px;
      padding: 20px;
      border-radius: 15px;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
  }
  
  .trending-university-card:last-child {
      border-bottom: none;
  }
  
  .trend-rank-new {
      width: 50px;
      height: 50px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.1rem;
      margin-right: 20px;
      color: white;
      position: relative;
      overflow: hidden;
  }
  
  .trend-rank-new::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: inherit;
      opacity: 0.8;
      transition: opacity 0.3s ease;
  }
  
  .trending-university-card:hover .trend-rank-new::before {
      opacity: 1;
  }
  
  .trend-rank-new.rank-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #8B4513; }
  .trend-rank-new.rank-2 { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); color: #444; }
  .trend-rank-new.rank-3 { background: linear-gradient(135deg, #CD7F32, #B87333); }
  .trend-rank-new:not(.rank-1):not(.rank-2):not(.rank-3) { background: linear-gradient(135deg, #667eea, #764ba2); }
  
  .trend-info-new {
      flex: 1;
      min-width: 0;
  }
  
  .trend-uni-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  
  .trend-department {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin-bottom: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  
  .trend-badges {
      display: flex;
      gap: 8px;
      align-items: center;
  }
  
  .trend-badge-new {
      padding: 3px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .trend-badge-new.devlet {
      background: rgba(39, 174, 96, 0.1);
      color: #27ae60;
      border: 1px solid rgba(39, 174, 96, 0.2);
  }
  
  .trend-badge-new.vakif {
      background: rgba(230, 126, 34, 0.1);
      color: #e67e22;
      border: 1px solid rgba(230, 126, 34, 0.2);
  }
  
  .trend-location {
      font-size: 0.8rem;
      color: #95a5a6;
      display: flex;
      align-items: center;
      gap: 4px;
  }
  
  .trend-stats-new {
      text-align: right;
      margin-left: 20px;
  }
  
  .trend-view-count {
      font-size: 1.3rem;
      font-weight: 900;
      color: #667eea;
      display: block;
      line-height: 1;
  }
  
  .trend-view-label {
      font-size: 0.75rem;
      color: #95a5a6;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
  }
  
  .stats-sidebar {
      display: flex;
      flex-direction: column;
      gap: 25px;
  }
  
  .stats-card, .quick-actions-card {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.3);
      overflow: hidden;
  }
  
  .stats-header, .actions-header {
      padding: 20px 25px 15px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  
  .stats-header h4, .actions-header h4 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 700;
      color: #2c3e50;
  }
  
  .stats-list {
      padding: 15px 25px 25px;
  }
  
  .stat-row {
      display: flex;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .stat-row:last-child {
      border-bottom: none;
  }
  
  .stat-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      font-size: 1.1rem;
  }
  
  .stat-icon.engineering { background: linear-gradient(135deg, #667eea, #764ba2); }
  .stat-icon.medicine { background: linear-gradient(135deg, #e74c3c, #c0392b); }
  .stat-icon.business { background: linear-gradient(135deg, #3498db, #2980b9); }
  .stat-icon.social { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
  
  .stat-info {
      flex: 1;
  }
  
  .stat-title {
      display: block;
      font-weight: 600;
      color: #2c3e50;
      font-size: 0.9rem;
      margin-bottom: 2px;
  }
  
  .stat-value {
      font-size: 0.8rem;
      color: #7f8c8d;
  }
  
  .stat-trend {
      padding: 4px 8px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 700;
  }
  
  .stat-trend.up {
      background: rgba(39, 174, 96, 0.1);
      color: #27ae60;
  }
  
  .stat-trend.down {
      background: rgba(231, 76, 60, 0.1);
      color: #e74c3c;
  }
  
  .actions-grid {
      padding: 15px 25px 25px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }
  
  .action-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 15px;
      border-radius: 15px;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }
  
  .action-btn:hover {
      transform: translateY(-2px);
      color: inherit;
      text-decoration: none;
  }
  
  .action-btn.engineering {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
      border-color: rgba(102, 126, 234, 0.2);
  }
  
  .action-btn.literature {
      background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
      border-color: rgba(231, 76, 60, 0.2);
  }
  
  .action-btn.equal {
      background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
      border-color: rgba(52, 152, 219, 0.2);
  }
  
  .action-btn.language {
      background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
      border-color: rgba(155, 89, 182, 0.2);
  }
  
  .action-btn:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  .action-icon {
      font-size: 1.5rem;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  }
  
  .action-btn span:last-child {
      font-size: 0.85rem;
      font-weight: 600;
      color: #2c3e50;
  }
  
  .loading-placeholder {
      text-align: center;
      padding: 60px 20px;
      color: #7f8c8d;
  }
  
  .loading-animation {
      display: flex;
      justify-content: center;
      gap: 5px;
      margin-bottom: 20px;
  }
  
  .dot1, .dot2, .dot3 {
      width: 10px;
      height: 10px;
      background: #667eea;
      border-radius: 50%;
      animation: loadingDots 1.4s ease-in-out infinite both;
  }
  
  .dot1 { animation-delay: -0.32s; }
  .dot2 { animation-delay: -0.16s; }
  
  @keyframes loadingDots {
      0%, 80%, 100% { transform: scale(0); }
      40% { transform: scale(1); }
  }
  
  .trends-cta {
      text-align: center;
      position: relative;
      z-index: 10;
  }
  
  .explore-btn {
      position: relative;
      display: inline-block;
      padding: 20px 40px;
      border-radius: 50px;
      text-decoration: none;
      overflow: hidden;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.4s ease;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255,255,255,0.3);
  }
  
  .btn-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
      background-size: 400% 400%;
      opacity: 0;
      transition: opacity 0.4s ease;
      animation: gradientShift 8s ease infinite;
      border-radius: 50px;
  }
  
  @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
  }
  
  .explore-btn:hover .btn-bg {
      opacity: 1;
  }
  
  .explore-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      color: white;
      text-decoration: none;
  }
  
  .btn-content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
  }
  
  .btn-arrow {
      transition: transform 0.3s ease;
  }
  
  .explore-btn:hover .btn-arrow {
      transform: translateX(5px);
  }
  
  @media (max-width: 1024px) {
      .trends-dashboard {
          grid-template-columns: 1fr;
          gap: 30px;
      }
      
      .trends-header-new {
          flex-direction: column;
          gap: 30px;
          text-align: center;
      }
      
      .header-right {
          align-items: center;
      }
  }
  
  @media (max-width: 768px) {
      .live-trends-section {
          padding: 60px 0;
      }
      
      .trends-title-new {
          font-size: 2.5rem;
      }
      
      .trends-desc {
          font-size: 1rem;
      }
      
      .panel-header {
          padding: 20px 25px 15px;
          flex-direction: column;
          gap: 15px;
          align-items: flex-start;
      }
      
      .trending-grid {
          padding: 15px 25px 25px;
      }
      
      .trending-university-card {
          padding: 15px 0;
      }
      
      .trend-rank-new {
          width: 40px;
          height: 40px;
          margin-right: 15px;
      }
      
      .trend-uni-name {
          font-size: 1rem;
      }
      
      .actions-grid {
          grid-template-columns: 1fr;
      }
      
      .stats-list {
          padding: 10px 20px 20px;
      }
  }
  
  
  
  .university-guide-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .guide-header {
      margin-bottom: 60px;
  }
  
  .guide-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(108, 99, 255, 0.1);
      color: #6c63ff;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 20px;
  }
  
  .guide-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 15px;
  }
  
  .guide-subtitle {
      font-size: 1.1rem;
      color: #6c757d;
      max-width: 600px;
      margin: 0 auto;
  }
  
  .guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
  }
  
  .guide-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }
  
  .guide-card:hover {
      transform: translateY(-5px);
  }
  
  .card-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .guide-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 20px;
  }
  
  .guide-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .guide-list li {
      margin-bottom: 12px;
  }
  
  .guide-list a {
      color: #6c757d;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.2s ease;
  }
  
  .guide-list a:hover {
      color: #6c63ff;
  }
  
  .guide-list a::before {
      content: "→";
      margin-right: 10px;
      color: #6c63ff;
  }
  
  .guide-cta {
      text-align: center;
  }
  
  .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 15px 30px;
      background: linear-gradient(135deg, #6c63ff 0%, #a18fff 100%);
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
      color: #fff;
  }
  
  .cta-icon {
      font-size: 1.2rem;
  }
  
  @media (max-width: 768px) {
      .university-guide-section {
          padding: 60px 0;
      }
  
      .guide-title {
          font-size: 2rem;
      }
  
      .guide-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  
      .guide-card {
          padding: 25px;
      }
  }