/**
* Template Name: Craftivo
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Mulish", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# PRIMARY THEME COLORS (YOUR DIRECTION)
--------------------------------------------------------------*/
:root {
  --background-color: #111111;        /* Dark Background */
  --surface-color: #1a1a1a;           /* Cards / Boxes */
  --default-color: #e5e5e5;            /* Normal Text */
  --heading-color: #ffffff;            /* Headings */

  --accent-color: #0C5625;             /* PRIMARY GREEN */
  --accent-gold: #E1B700;              /* SECONDARY GOLD */
  --contrast-color: #ffffff;           /* White */
}

/*--------------------------------------------------------------
# NAV COLORS
--------------------------------------------------------------*/
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #0C5625;
  --nav-mobile-background-color: #111111;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #0C5625;
}

/*--------------------------------------------------------------
# GLOBAL
--------------------------------------------------------------*/
body {
  background: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), #ffffff 20%);
}

h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
.btn-login,
.btn-primary,
.btn-getstarted {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  border: none;
  transition: 0.3s;
}

.btn-login:hover,
.btn-primary:hover,
.btn-getstarted:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

/*--------------------------------------------------------------
# INPUTS
--------------------------------------------------------------*/
.custom-input {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  color: #ffffff;
}

.custom-input:focus {
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# LOGIN CARD
--------------------------------------------------------------*/
.login-card {
  background: var(--surface-color);
  border-radius: 16px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# USER AVATAR
--------------------------------------------------------------*/
.user-avatar {
  background: var(--accent-color);
  color: #ffffff;
}

/*--------------------------------------------------------------
# DROPDOWN
--------------------------------------------------------------*/
.dropdown-menu {
  background: var(--surface-color);
  border: 1px solid #2a2a2a;
}

.dropdown-item:hover {
  background: #1f1f1f;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/
.hero:before {
  background: rgba(17,17,17,0.75);
}

.hero p span {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# GOLD USAGE (RATINGS / HIGHLIGHTS)
--------------------------------------------------------------*/
.rating i,
.gold,
.star {
  color: var(--accent-gold);
}

/*--------------------------------------------------------------
# CARDS
--------------------------------------------------------------*/
.card,
.profile-card,
.exp-card {
  background: var(--surface-color);
  border: 1px solid #222;
}

/*--------------------------------------------------------------
# SCROLL TOP
--------------------------------------------------------------*/
.scroll-top {
  background: var(--accent-color);
}

.scroll-top:hover {
  background: color-mix(in srgb, var(--accent-color), #000 20%);
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
  background: var(--background-color);
}

.footer a:hover {
  color: var(--accent-color);
}






/* NEW ADDED  */

body {
  background: #0b0b0b;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Card */
.bet-card {
  background: linear-gradient(160deg, #0d1a0f 0%, #0a0f0a 50%, #0f1710 100%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(34, 197, 94, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  opacity: 0.6;
}

.bet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
              0 0 60px rgba(34, 197, 94, 0.15);
}

/* Icon */
.sport-icon {
  background: linear-gradient(135deg, #166534 0%, #15803d 100%);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(22, 101, 52, 0.4);
}

/* Badge */
.badge-current {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.15) 100%);
  color: #4ade80;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  text-transform: uppercase;
}

/* Teams Heading (Main) */
.teams-heading {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.3px;
}

/* Title (Sub-heading) */
.match-subtitle {
  font-size: 13px;
  color: #4ade80;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Prediction Titles List */
.prediction-titles-list {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

.title-group {
  padding: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.title-group:last-child {
  margin-bottom: 0 !important;
}

.title-group .match-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4ade80;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
}

/* Locked Box */
.locked-box {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px dashed rgba(234, 179, 8, 0.3);
  margin-top: 16px;
}

.lock-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.5));
}

.locked-box strong {
  font-size: 16px;
  color: #fbbf24;
  display: block;
  margin-top: 8px;
}

.locked-box .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.locked-box .btn-success {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.locked-box .btn-success:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

.locked-box .btn-warning {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.locked-box .btn-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

/* Teams List Styling */
.teams-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-item {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: default;
}

.team-item-locked {
  color: #e5e7eb;
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.6) 0%, rgba(31, 41, 55, 0.8) 100%);
  border: 1px solid rgba(107, 114, 128, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.team-item-locked:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.team-item-unlocked {
  color: #fff;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.4) 0%, rgba(21, 128, 61, 0.6) 100%);
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.25);
}

.team-item-unlocked:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}

/* Price Tag */
.locked-box .price {
  font-size: 18px;
  color: #e5e7eb;
}

.locked-box .price b {
  color: #fbbf24;
  font-size: 22px;
}

/* List */
.bet-info {
  list-style: none;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.bet-info li {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.bet-info li:last-child {
  margin-bottom: 0;
}

.bet-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 14px;
  font-weight: bold;
}

.bet-info .time {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bet-info .time::before {
  content: "⏱";
  color: #fbbf24;
}

/* Description */
.card-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.7;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-left: 3px solid #22c55e;
  margin-top: 12px;
}


/* Prising Section  */
.dark-bg {
  background: #0b0b0b;
  min-height: 100vh;
}

/* COMMON CARD */
.pricing-card {
  background: #111;
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.pricing-card h5 {
  color: #9ca3af;
  margin-bottom: 10px;
}

.pricing-card h2 {
  font-size: 42px;
  color: #16a34a;
  margin-bottom: 25px;
}

.pricing-card h2 span {
  font-size: 15px;
  color: #9ca3af;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.feature-list li.active {
  color: #d1fae5;
}

.feature-list li.inactive {
  color: #6b7280;
}

/* BASIC */
.pricing-card.basic {
  border: 1px solid #1f2937;
}

/* PRO */
.pricing-card.pro {
  border: 2px solid #16a34a;
  background: linear-gradient(180deg, #052e16, #0f172a);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ELITE */
.pricing-card.elite {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card.elite h2 {
  color: #eab308;
}

.text-muted{
  color: #039835 !important;
}


/* STACKEY BUTTON TELIGRAM */

/* Floating Telegram Button */
.telegram-float {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 16px;
  z-index: 9999;
}

/* Circle Button */
.telegram-float a {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.45);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover / Tap */
.telegram-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.6);
}

/* Icon size fix */
.telegram-float svg {
  width: 24px;
  height: 24px;
}


/* Pridiction CARD  */

.prediction-section {
    background: radial-gradient(circle at top, #0f172a, #020617);
}

.prediction-plan {
    background: linear-gradient(160deg, #0f172a, #020617);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #1f2937;
    position: relative;
    transition: all 0.35s ease;
    height: 100%;
}

.prediction-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.plan-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #e5e7eb;
}

.plan-odds {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #cbd5f5;
}

/* BADGE */
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

/* STATUS STYLES */
.pending {
    border: 1px solid #facc15;
}
.pending .plan-badge {
    background: #facc15;
    color: #000;
}

.won {
    border: 2px solid #22c55e;
    box-shadow: 0 0 35px rgba(34,197,94,0.35);
}
.won .plan-badge {
    background: #22c55e;
    color: #000;
}

.lost {
    border: 1px solid #ef4444;
}
.lost .plan-badge {
    background: #ef4444;
    color: #fff;
}

/* RESULT SECTIONS  */


.track-record {
  background: radial-gradient(circle at top, #050505, #000);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-subtitle {
  color: #9ca3af;
  font-size: 14px;
}

/* STATS */
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card h6 {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 10px;
}

.stat-card h2 {
  font-weight: 700;
}

.win-glow {
  box-shadow: 0 0 30px rgba(34,197,94,0.35);
  border-color: #22c55e;
}

/* RESULTS BOX */
.results-box {
  background: linear-gradient(160deg, #050505, #000);
  border-radius: 20px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* RESULT ROW */
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.result-row:last-child {
  border-bottom: none;
}

.result-row h6 {
  margin: 0;
  font-size: 15px;
}

.result-row small {
  color: #9ca3af;
}

/* STATUS PILL */
.status-pill {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* STATUS COLORS */
.status-pill.won {
  background: #22c55e;
  color: #000;
}

.status-pill.lost {
  background: #ef4444;
  color: #fff;
}

.status-pill.pending {
  background: #facc15;
  color: #000;
}


/* HERO SECTION NEW  */
/* HERO SECTION */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.95) 40%,
    rgba(0,0,0,0.7) 65%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  color: #22c55e;
}

.hero-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 520px;
  margin: 20px 0 30px;
}

/* BUTTONS */
.hero-actions .btn {
  border-radius: 50px;
  padding: 14px 34px;
  font-weight: 600;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 30px;
}

.hero-stats .stat h4 {
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 2px;
}

.hero-stats .stat span {
  font-size: 13px;
  color: #9ca3af;
}

/* RIGHT IMAGE */
.hero-image {
  max-width: 90%;
  height: auto;
  filter: grayscale(30%);
}

.hero-actions {
  margin-top: 25px;
}

.hero-actions .btn {
  border-radius: 50px;
  padding: 14px 34px;
  font-weight: 600;
}

/* MOBILE ONLY */
@media (max-width: 576px) {
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    text-align: center;
  }
}


.hero-section {
  position: relative;
  min-height: 70vh !important; /* Reduced height */
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* above overlay */
}

.hero-actions a {
  min-width: 180px;
}

.hero-stats .stat h4 {
  margin: 0;
  font-size: 1.5rem;
}

.hero-stats .stat span {
  display: block;
  font-size: 0.875rem;
  color: #ccc;
}

/*--------------------------------------------------------------
# PROFILE PAGE
--------------------------------------------------------------*/
.profile-card-main {
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid #222;
  overflow: hidden;
}

.profile-cover {
  height: 100px;
  margin: -1.5rem -1.5rem 0 -1.5rem;
  overflow: hidden;
}

.profile-cover .cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.profile-avatar-wrapper {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.profile-avatar-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), #16a34a);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  border: 4px solid var(--surface-color);
  box-shadow: 0 4px 20px rgba(12, 86, 37, 0.3);
}

.profile-name {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
}

.btn-manage-account {
  background: transparent;
  border: 1px solid #333;
  color: var(--default-color);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-manage-account:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.section-label {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--default-color);
  font-size: 14px;
}

.about-item i {
  color: #6b7280;
  font-size: 18px;
  width: 24px;
}

.profile-activity-card {
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid #222;
}

.profile-activity-card h5 {
  color: var(--heading-color);
  font-weight: 600;
}

.text-muted-profile {
  color: #6b7280 !important;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(12, 86, 37, 0.3);
}

.activity-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 18px;
}

.activity-icon.verified {
  background: linear-gradient(135deg, #065f46, #064e3b);
  color: #34d399;
}

.activity-icon.admin {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #c4b5fd;
}

.activity-content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.activity-content small {
  color: #9ca3af;
  font-size: 13px;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.quick-action-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.quick-action-item i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .profile-avatar-large {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .profile-name {
    font-size: 20px;
  }
}

/* Muted field text for default values */
.text-muted-field {
  color: #6b7280;
}

/* View all link */
.view-all-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Worked on list */
.worked-on-list {
  display: flex;
  flex-direction: column;
}

.worked-on-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.worked-on-item:last-of-type {
  border-bottom: none;
}

.worked-on-icon {
  width: 32px;
  height: 32px;
  background: #3b82f6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.worked-on-content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.worked-on-content small {
  color: #9ca3af;
  font-size: 12px;
}

.show-more-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
}

.show-more-link:hover {
  color: #9ca3af;
}

/* Places list */
.place-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}

.place-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.place-icon.jira {
  background: linear-gradient(135deg, #0052cc, #2684ff);
  color: #fff;
}

.place-content small.place-type {
  color: #9ca3af;
  font-size: 11px;
}

.place-content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

/* Works with / Collaborator badge */
.collaborator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  color: #3b82f6;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.collaborator-badge:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

