/* Football-themed personal blog styles */

:root {
  --bg-primary: #0a0f0c;
  --bg-secondary: #111827;
  --accent-primary: #22c55e;
  --accent-secondary: #16a34a;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border-color: rgba(34, 197, 94, 0.2);
  --card-bg: rgba(17, 24, 39, 0.85);
  --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  background: rgba(17, 24, 39, 0.9);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--gradient-primary);
  color: white;
}

.lang-btn:hover {
  color: white;
  transform: translateY(-1px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(10, 15, 12, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.football-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

img.football-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
  border: 1px solid var(--border-color);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://yt3.googleusercontent.com/yxvW2Qffq3-scxcimD4Ui9VM0R1dw5jX695wPefgILRBDrktQvCQNyaiUGu3hVaov6zyNlt6ADI=w2560-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, rgba(10, 15, 12, 0.9) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-profile {
  max-width: 600px;
  margin: 0 auto;
}

.profile-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.profile-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.35);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.scroll-arrow {
  font-size: 20px;
  margin-top: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

/* Internal Pages */
.page {
  padding-top: 110px;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 10%, rgba(34, 197, 94, 0.10) 0%, transparent 40%),
              linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

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

.page-header {
  margin: 0 0 25px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.page-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.content-card h2 {
  font-size: 1.4rem;
  margin: 22px 0 10px;
}

.content-card p {
  color: var(--text-secondary);
  margin: 10px 0;
}

.content-card ul {
  margin: 10px 0 10px 18px;
  color: var(--text-secondary);
}

.content-card a {
  color: var(--accent-primary);
}

.content-card a:hover {
  color: var(--accent-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.about-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.4);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.3));
}

.about-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Videos Section */
.videos-section {
  background: var(--bg-primary);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.video-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.4);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-emoji {
  font-size: 4rem;
  opacity: 0.8;
}

.play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.video-card:hover .play-button {
  background: rgba(34, 197, 94, 0.8);
  transform: scale(1.1);
}

.video-info {
  padding: 25px;
}

.video-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.video-description {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.5;
}

.video-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.video-link:hover {
  color: var(--accent-secondary);
}

.section-cta {
  text-align: center;
}

/* Analysis Section */
.analysis-section {
  background: var(--bg-secondary);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.article-card.featured {
  grid-column: span 2;
}

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

.article-image {
  height: 180px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Match Analysis cover image (homepages) */
.analysis-section .article-image {
  background-image: url('https://yt3.googleusercontent.com/yxvW2Qffq3-scxcimD4Ui9VM0R1dw5jX695wPefgILRBDrktQvCQNyaiUGu3hVaov6zyNlt6ADI=w2560-fcrop64=1,00005a57ffffa5a8-k-c0xffffffff-no-nd-rj');
  background-size: cover;
  background-position: center;
}

.analysis-section .article-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 12, 0.15) 0%, rgba(10, 15, 12, 0.65) 100%);
}

.article-emoji {
  font-size: 4rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.article-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-date {
  color: var(--text-muted);
}

.article-category {
  color: var(--accent-primary);
  font-weight: 700;
}

.article-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--accent-primary);
}

.article-excerpt {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: var(--accent-secondary);
}

/* Predictions Section */
.predictions-section {
  background: var(--bg-primary);
}

.predictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.prediction-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  text-align: center;
}

.prediction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.4);
}

.match-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient-primary);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}

.date-day {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.date-month {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.match-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.team-emoji {
  font-size: 2.5rem;
}

.team-name {
  font-weight: 700;
  color: white;
}

.match-vs {
  font-size: 14px;
  font-weight: 900;
  color: var(--accent-primary);
  margin: 0 15px;
}

.prediction-result {
  margin-bottom: 20px;
}

.predicted-score {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.confidence {
  font-size: 14px;
  color: var(--text-muted);
}

.prediction-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.prediction-link:hover {
  color: var(--accent-secondary);
}

/* Social Section */
.social-section {
  background: var(--bg-secondary);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.social-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(20px);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 197, 94, 0.4);
}

.social-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.social-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.social-handle {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.social-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.social-card:hover .social-arrow {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

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

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 12, 0.98);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }

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

  .article-card.featured {
    grid-column: span 1;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .language-switcher {
    top: 15px;
    right: 15px;
    scale: 0.9;
  }
}

@media (max-width: 480px) {
  .profile-image-wrapper {
    width: 160px;
    height: 160px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  section {
    padding: 70px 0;
  }
}
