/* Premium Picks Enhancement Styles */
:root {
  /* Colors */
  --primary: #1a237e;
  --primary-hover: #283593;
  --text-primary: #212529;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  --background-light: #f8f9fa;
  --background-white: #fff;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --space-sm: 8px;
  --space-md: 15px;
  --space-lg: 20px;
  --space-xl: 40px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;
}

/* Container Layout */
.premium-picks-container {
  padding: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* Handicapper Section */
.handicapper-section {
  margin-bottom: var(--space-xl);
  background: var(--background-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.handicapper-header {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  background: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}

/* Avatar Styles */
.avatar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: var(--space-lg);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.handicapper-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.avatar-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}

/* Handicapper Info */
.handicapper-info {
  flex-grow: 1;
  min-width: 0;
}

.handicapper-info h3 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
}

.handicapper-info h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.handicapper-info h3 a:hover {
  color: var(--primary-hover);
}

/* Picks Grid */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-lg);
}

/* Pick Cards */
.pick-card {
  background: var(--background-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.pick-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Card Header */
.pick-header {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}

.pick-icon {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.pick-icon i {
  font-size: 18px;
  color: var(--primary);
  margin-right: 8px;
}

.sport-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.pick-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Card Content */
.pick-details {
  padding: var(--space-md);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.description-text,
.description-full {
  margin-bottom: 0;
}

.read-more-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-top: var(--space-sm);
  transition: color 0.2s;
}

.read-more-link:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* Card Footer */
.premium-picks-container .pick-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  margin: 0;
}

.pick-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.pick-price .currency {
  font-size: 16px;
  vertical-align: top;
  margin-right: 2px;
}

.pick-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary);
  color: var(--background-white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.2s;
}

.pick-button:hover {
  background: var(--primary-hover);
  color: var(--background-white);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Animations */
@keyframes pulse {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.pulse {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .picks-grid {
    grid-template-columns: 1fr;
  }
  
  .handicapper-header {
    flex-direction: column;
    text-align: center;
  }
  
  .avatar-wrapper {
    margin: 0 0 var(--space-md) 0;
  }
} 