/* Modern CSS Variables for Light/Dark Mode */
:root {
  /* Colors */
  --primary-color: #6366f1;
  --primary-hover: #5b50d6;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background-primary: #ffffff;
  --background-secondary: #f9fafb;
  --surface: #ffffff;
  --border-color: #e5e7eb;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --backdrop-blur: blur(12px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-large: 20px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --background-primary: #111827;
  --background-secondary: #1f2937;
  --surface: #374151;
  --border-color: #4b5563;
  --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-primary);
  transition: var(--transition);
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
}

[data-theme="dark"] .glass {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

[data-theme="dark"] .header {
  background: rgba(17, 24, 39, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center; /* Align by visual centre instead */
  justify-content: space-between;
  padding: 1rem 0;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav > * {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-actions > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-actions svg {
  display: block;
  width: 20px;
  height: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition);
  text-decoration: none;
  border: none; /* Remove border */
  flex-shrink: 0; /* Prevent shrinking */
  line-height: 1; /* Remove line height spacing */
  background: none;
  cursor: pointer;
}

#theme-toggle {
  font-size: 1rem; /* Smaller font size for moon/sun emoji */
  pointer-events: auto; /* Ensure clicks work */
  position: relative; /* Establish stacking context */
  z-index: 1; /* Above other elements */
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

.social-link svg {
  transition: var(--transition);
}

.theme-toggle {
  background: none;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent shrinking */
}

.theme-toggle:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,300 1000,1000"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  color: var(--primary-hover);
}

/* Crypto Price Ticker */
.crypto-ticker {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.ticker-item {
  text-align: center;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: var(--background-secondary);
  transition: var(--transition);
}

.ticker-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.ticker-symbol {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.ticker-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.ticker-change {
  font-size: 0.875rem;
  font-weight: 500;
}

.ticker-change.positive {
  color: var(--secondary-color);
}

.ticker-change.negative {
  color: #ef4444;
}

/* Card Components - Fixed Layout */
.card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: block; /* Change to block to prevent flex issues */
  height: auto; /* Let content determine height */
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block; /* Block display for proper layout */
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

[data-theme="dark"] .card-glass {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card image - matches homepage working version */
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-image {
  transform: scale(1.05);
}

/* Fixed content container - no overlap */
.card-content {
  padding: 1.5rem;
  position: relative; /* Ensure proper positioning */
  background: var(--surface); /* Solid background */
  z-index: 2; /* Above image */
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.card-meta .date {
  color: var(--primary-color);
  font-weight: 500;
}

.card-meta .category {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
  display: block; /* Ensure block display */
}

.card-title:hover {
  color: var(--primary-color);
}

.card-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  text-align: right;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-hover);
}

/* Category Page Styles */
.category-header {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 80px;
  text-align: center;
}

.category-title {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.category-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.category-posts {
  padding: 3rem 0;
}

.no-posts {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-secondary);
}

/* Grid Layouts */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  align-items: start; /* Align cards to top */
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  align-items: start; /* Align cards to top */
}

/* Search & Filters */
.search-section {
  background: var(--background-secondary);
  padding: 3rem 0;
  margin: 2rem 0;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
}

.search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination a,
.pagination span {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .current {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  margin-top: 2rem;
}

/* Loading Animations */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }
  

  .hero {
    min-height: 60vh;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .search-form {
    flex-direction: column;
  }

  .search-input {
    min-width: 100%;
  }

  .ticker-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .ticker-grid {
    grid-template-columns: 1fr;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* Post Page Styles */
.post-content {
  margin-top: 80px;
  padding: 3rem 0;
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.post-date {
  color: var(--primary-color);
  font-weight: 500;
}

.category-tag {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.category-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.post-author {
  color: var(--text-secondary);
}

.post-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.post-excerpt {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--background-secondary);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.post-featured-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.post-body h2 {
  font-size: 1.75rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.post-body h3 {
  font-size: 1.5rem;
}

.post-body h4 {
  font-size: 1.25rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--background-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-style: italic;
}

.post-body code {
  background: var(--background-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.9em;
}

.post-body pre {
  background: var(--background-secondary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.post-body pre code {
  background: none;
  padding: 0;
}

.post-tags {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--background-secondary);
  border-radius: var(--border-radius);
}

.post-tags h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-footer {
  border-top: 2px solid var(--border-color);
  padding-top: 3rem;
  margin-top: 3rem;
}

.share-post {
  margin-bottom: 3rem;
  text-align: center;
}

.share-post h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.share-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-link {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
}

.share-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.share-link.twitter:hover {
  border-color: #1da1f2;
  background: #1da1f2;
  color: white;
}

.share-link.linkedin:hover {
  border-color: #0077b5;
  background: #0077b5;
  color: white;
}

.share-link.facebook:hover {
  border-color: #1877f2;
  background: #1877f2;
  color: white;
}

.author-bio {
  background: var(--background-secondary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
}

.author-bio h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-primary);
}

.author-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.author-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
}

.avatar-icon {
  width: 36px;
  height: 36px;
  color: white;
}

.author-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.author-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for posts */
@media (max-width: 768px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .author-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .avatar-icon {
    width: 30px;
    height: 30px;
  }
  
  .share-links {
    flex-direction: column;
    align-items: center;
  }
  
  .share-link {
    width: 200px;
    text-align: center;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow-light: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    --shadow-large: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
  }
  
  .card {
    border-width: 2px;
  }
}