﻿
.blog-intro {
  position: relative;
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.1) 0%, rgba(0, 112, 193, 0.1) 100%);
  overflow: hidden;
  text-align: center;
}

.blog-intro::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 223, 0.1) 0%, rgba(0, 183, 223, 0) 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.blog-intro::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 223, 0.1) 0%, rgba(0, 183, 223, 0) 70%);
  bottom: -150px;
  left: -150px;
  z-index: 0;
}

.blog-intro__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.blog-intro__heading {
  font-family: var(--title-font);
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.blog-intro__heading i {
  font-size: 0.8em;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.blog-intro__subheading {
  font-family: var(--text-font);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}


.blog-section__title {
  font-family: var(--title-font);
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.blog-section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.blog-section__title i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.blog-section__subtitle {
  font-family: var(--text-font);
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}


.blog-analytics-updates {
  padding: 5rem 0;
  background: var(--bg-color);
  position: relative;
}

.blog-analytics-updates__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.analytics-updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.analytics-update-post {
  display: flex;
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 183, 223, 0.1);
}

.analytics-update-post:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.analytics-update-post__image {
  width: 40%;
  min-width: 40%;
  max-width: 40%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.analytics-update-post:hover .analytics-update-post__image {
  transform: none;
}

.analytics-update-post__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.analytics-update-post__category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.1) 0%, rgba(0, 112, 193, 0.1) 100%);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: max-content;
  transition: all 0.3s ease;
}

.analytics-update-post:hover .analytics-update-post__category {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-color);
}

.analytics-update-post__title {
  font-family: var(--title-font);
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.analytics-update-post:hover .analytics-update-post__title {
  color: var(--primary-color);
}

.analytics-update-post__meta {
  font-size: 0.9rem;
  color: var(--text-secondary-color);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.analytics-update-post__excerpt {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
}

.analytics-update-post__full-text {
  display: none;
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.analytics-update-post__full-text p {
  margin-bottom: 1rem;
}

.analytics-update-post__full-text p:last-child {
  margin-bottom: 1.5rem;
}

.analytics-update-post.expanded .analytics-update-post__excerpt {
  display: none;
}

.analytics-update-post.expanded .analytics-update-post__full-text {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.analytics-update-post__link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.analytics-update-post__link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.analytics-update-post__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.analytics-update-post__link:hover {
  color: var(--secondary-color);
}

.analytics-update-post__link:hover::after {
  transform: none;
}

.analytics-update-post__link:hover i {
  transform: none;
}

.analytics-update-post.expanded .analytics-update-post__link {
  color: var(--text-secondary-color);
}

.analytics-update-post.expanded .analytics-update-post__link::after {
  background: var(--text-secondary-color);
}

.hidden-update {
  display: none;
}

.analytics-updates__view-all {
  text-align: center;
  margin-top: 3rem;
}

.view-all-updates-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-color);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 183, 223, 0.2);
}

.view-all-updates-btn i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.view-all-updates-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 183, 223, 0.3);
}

.view-all-updates-btn:hover i {
  transform: translateY(3px);
}

.view-all-updates-btn.active i {
  transform: rotate(180deg);
}


.blog-strategy-tutorials {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  position: relative;
}

.blog-strategy-tutorials__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.strategy-tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.strategy-tutorial-card {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.strategy-tutorial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.1) 0%, rgba(0, 112, 193, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strategy-tutorial-card:hover {
  transform: none;
}

.strategy-tutorial-card:hover::before {
  opacity: 0;
}

.strategy-tutorial-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.strategy-tutorial-card:hover .strategy-tutorial-icon {
  transform: none;
  color: var(--primary-color);
}

.strategy-tutorial-title {
  font-family: var(--title-font);
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.strategy-tutorial-summary {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
}

.strategy-tutorial-details {
  display: none;
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
  text-align: left;
}

.strategy-tutorial-card.expanded .strategy-tutorial-summary {
  display: none;
}

.strategy-tutorial-card.expanded .strategy-tutorial-details {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.strategy-tutorial-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: auto;
  transition: all 0.3s ease;
  justify-content: center;
}

.strategy-tutorial-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.strategy-tutorial-link:hover {
  color: var(--secondary-color);
}

.strategy-tutorial-link:hover i {
  transform: none;
}

.strategy-tutorial-card.expanded .strategy-tutorial-link {
  color: var(--text-secondary-color);
}


.blog-tennis-highlights {
  padding: 5rem 0;
  background: var(--bg-color);
  position: relative;
}

.blog-tennis-highlights__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tennis-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-player-card {
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 183, 223, 0.1);
}

.highlight-player-card:hover {
  transform: none;
}

.highlight-player-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.highlight-player-card:hover .highlight-player-image {
  transform: none;
}

.highlight-player-info {
  padding: 1.5rem;
}

.highlight-player-name {
  font-family: var(--title-font);
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.highlight-player-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.highlight-player-card:hover .highlight-player-name::after {
  width: 50px;
}

.highlight-player-stats {
  font-family: var(--text-font);
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.highlight-player-analysis {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.highlight-tournament-card {
  display: flex;
  align-items: center;
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 183, 223, 0.1);
  padding: 1.5rem;
}

.highlight-tournament-card:hover {
  transform: none;
}

.highlight-tournament-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-tournament-card:hover .highlight-tournament-logo {
  transform: none;
}

.highlight-tournament-content {
  flex: 1;
}

.highlight-tournament-title {
  font-family: var(--title-font);
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  position: relative;
}

.highlight-tournament-content p {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}


.blog-community-insights {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  position: relative;
}

.blog-community-insights__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.community-insights-list {
  margin-top: 3rem;
}

.community-insight {
  display: flex;
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 183, 223, 0.1);
}

.community-insight:last-child {
  margin-bottom: 0;
}

.community-insight:hover {
  transform: none;
}

.community-insight-avatar {
  width: 120px;
  height: 120px;
  min-width: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 2rem;
  border: 3px solid rgba(0, 183, 223, 0.2);
  transition: all 0.3s ease;
}

.community-insight:hover .community-insight-avatar {
  transform: none;
}

.community-insight-content {
  padding: 2rem 2rem 2rem 0;
  flex: 1;
}

.community-insight-title {
  font-family: var(--title-font);
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.community-insight-author {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.community-insight-excerpt {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.community-insight-full {
  display: none;
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
}

.community-insight.expanded .community-insight-excerpt {
  display: none;
}

.community-insight.expanded .community-insight-full {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.community-insight-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}

.community-insight-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.community-insight-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.community-insight-link:hover {
  color: var(--secondary-color);
}

.community-insight-link:hover::after {
  transform: none;
}

.community-insight-link:hover i {
  transform: none;
}

.community-insight.expanded .community-insight-link {
  color: var(--text-secondary-color);
}

.community-insight.expanded .community-insight-link::after {
  background: var(--text-secondary-color);
}


.blog-analytics-trends {
  padding: 5rem 0;
  background: var(--bg-color);
  position: relative;
}

.blog-analytics-trends__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.analytics-trends-list {
  margin-top: 3rem;
}

.trend-item {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

@media (max-width: 425px) {
  .trend-item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.trend-item:last-child {
  margin-bottom: 0;
}

.trend-item:hover {
  transform: none;
}

.trend-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--bg-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trend-item:hover .trend-icon {
  transform: none;
  color: var(--primary-color);
}

.trend-content {
  flex: 1;
}

.trend-title {
  font-family: var(--title-font);
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.trend-content p {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}


.blog-expert-advice {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  position: relative;
}

.blog-expert-advice__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expert-advice-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 2rem;
}

.expert-advice-item {
  display: flex;
  align-items: center;
  background: var(--bg-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 183, 223, 0.1);
}

.expert-advice-item:hover {
  transform: none;
}

.expert-advice-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 3px solid rgba(0, 183, 223, 0.2);
  transition: all 0.3s ease;
}

.expert-advice-item:hover .expert-advice-avatar {
  transform: none;
}

.expert-advice-content {
  flex: 1;
}

.expert-advice-quote {
  font-family: var(--text-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.expert-advice-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--primary-color);
  opacity: 0.5;
}

.expert-advice-name {
  font-family: var(--text-font);
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}


.blog-beginner-corner {
  padding: 5rem 0;
  background: var(--bg-color);
  position: relative;
}

.blog-beginner-corner__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.beginner-guides-list {
  margin-top: 3rem;
  counter-reset: guide-counter;
}

.beginner-guides-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  counter-increment: guide-counter;
  position: relative;
  padding-left: 4rem;
}

.beginner-guides-list li:last-child {
  margin-bottom: 0;
}

.guide-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 183, 223, 0.2);
}

.beginner-guides-list li:hover .guide-number {
  transform: none;
}

.guide-content {
  flex: 1;
}

.guide-content h3 {
  font-family: var(--title-font);
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.beginner-guides-list li:hover h3 {
  color: var(--primary-color);
}

.guide-content p {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1rem;
}

.guide-content a {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.guide-content a i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.guide-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.guide-content a:hover {
  color: var(--secondary-color);
}

.guide-content a:hover::after {
  transform: none;
}

.guide-content a:hover i {
  transform: none;
}


.blog-tennis-events {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  position: relative;
}

.blog-tennis-events__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tennis-events-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  gap: 2rem;
}

.tennis-event-card {
  display: flex;
  background: var(--bg-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 183, 223, 0.1);
  height: 100%;
}

.tennis-event-card:hover {
  transform: none;
}

.event-highlight {
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.1) 0%, rgba(0, 112, 193, 0.1) 100%);
}

.tennis-event-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tennis-event-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50px;
  color: var(--bg-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: max-content;
}

.tennis-event-title {
  font-family: var(--title-font);
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.tennis-event-description {
  font-family: var(--text-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
}

.tennis-event-date {
  font-family: var(--text-font);
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.tennis-event-date i {
  margin-right: 0.5rem;
}

.tennis-event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-color);
  border-radius: 50px;
  font-weight: 600;
  max-width: max-content;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(0, 183, 223, 0.2);
}

.tennis-event-btn i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.tennis-event-btn:hover {
  transform: none;
}

.tennis-event-btn:hover i {
  transform: none;
}

.tennis-event-visual {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.tennis-event-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.tennis-event-card:hover .tennis-event-visual img {
  transform: none;
}


.blog-tennis-trivia {
  padding: 5rem 0;
  background: var(--bg-color);
  position: relative;
}

.blog-tennis-trivia__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tennis-trivia-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.trivia-card {
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trivia-card:hover {
  transform: none;
}

.trivia-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.trivia-card:hover .trivia-icon {
  transform: none;
  color: var(--primary-color);
}

.trivia-card p {
  font-family: var(--text-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}


.blog-new-features {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 183, 223, 0.05) 0%, rgba(0, 112, 193, 0.05) 100%);
  position: relative;
}

.blog-new-features__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.new-features-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.new-features-list li {
  display: flex;
  align-items: center;
  background: var(--bg-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 183, 223, 0.1);
}

.new-features-list li:hover {
  transform: none;
}

.feature-icon {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.new-features-list li:hover .feature-icon {
  transform: none;
  color: var(--primary-color);
}

.new-features-list li span {
  position: relative;
  z-index: 2;
  font-family: var(--text-font);
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.new-features-list li:hover span {
  transform: none;
  color: var(--text-color);
}


.blog-invite-friends {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--bg-color);
}

.blog-invite-friends::before,
.blog-invite-friends::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.blog-invite-friends::before {
  top: -150px;
  left: -150px;
}

.blog-invite-friends::after {
  bottom: -150px;
  right: -150px;
}

.blog-invite-friends__wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.blog-invite-friends__wrapper .blog-section__title {
  color: var(--bg-color);
}

.invite-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.invite-friends-text {
  font-family: var(--text-font);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.invite-friends-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--bg-color);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.invite-friends-btn i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.invite-friends-btn:hover {
  transform: none;
}

.invite-friends-btn:hover i {
  transform: none;
}


@keyframes fadeIn {
  from, to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%, 50%, 100% {
    transform: none;
  }
}


@media (max-width: 1200px) {
  .analytics-updates-grid {
    grid-template-columns: 1fr;
  }
  
  .tennis-event-card {
    flex-direction: column;
  }
  
  .tennis-event-visual {
    width: 100%;
    height: 200px;
  }
  
  .tennis-events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .blog-intro__heading {
    font-size: 2.5rem;
  }
  
  .blog-section__title {
    font-size: 2.2rem;
  }
  
  .analytics-update-post {
    flex-direction: column;
  }
  
  .analytics-update-post__image {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
  
  .highlight-tournament-card {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-tournament-logo {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .expert-advice-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-intro__heading {
    font-size: 2rem;
  }
  
  .blog-intro__subheading {
    font-size: 1rem;
  }
  
  .blog-section__title {
    font-size: 1.8rem;
  }
  
  .strategy-tutorials-grid {
    grid-template-columns: 1fr;
  }
  
  .tennis-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .community-insight {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .community-insight-avatar {
    margin: 2rem 0 0;
  }
  
  .community-insight-content {
    padding: 1.5rem;
  }
  
  .expert-advice-item {
    flex-direction: column;
    text-align: center;
  }
  
  .expert-advice-avatar {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .expert-advice-quote {
    padding-left: 0;
  }
  
  .expert-advice-quote::before {
    display: none;
  }
  
  .new-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-intro {
    padding: 4rem 0 2rem;
  }
  
  .blog-intro__heading {
    font-size: 1.8rem;
  }
  
  .blog-section__title {
    font-size: 1.5rem;
  }
  
  .blog-analytics-updates,
  .blog-strategy-tutorials,
  .blog-tennis-highlights,
  .blog-community-insights,
  .blog-analytics-trends,
  .blog-expert-advice,
  .blog-beginner-corner,
  .blog-tennis-events,
  .blog-tennis-trivia,
  .blog-new-features,
  .blog-invite-friends {
    padding: 3rem 0;
  }
  
  .tennis-trivia-grid {
    grid-template-columns: 1fr;
  }
  
  .beginner-guides-list li {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .guide-number {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .invite-friends-text {
    font-size: 1rem;
  }
  
  .invite-friends-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}




.blog-intro__heading {
  font-family: var(--title-font);
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.blog-intro__heading i {
  font-size: 0.8em;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.blog-intro__subheading {
  font-family: var(--text-font);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}


.pre-animation {
  opacity: 1;
  transform: none;
}

.appear-animation {
  opacity: 1;
  transform: none;
}


.analytics-update-post.pre-animation,
.strategy-tutorial-card.pre-animation,
.highlight-player-card.pre-animation,
.highlight-tournament-card.pre-animation,
.community-insight.pre-animation,
.trend-item.pre-animation,
.expert-advice-item.pre-animation,
.beginner-guides-list li.pre-animation,
.tennis-event-card.pre-animation,
.trivia-card.pre-animation,
.new-features-list li.pre-animation,
.new-features-list li:nth-child(odd).pre-animation,
.new-features-list li:nth-child(even).pre-animation {
  transform: none;
  opacity: 1;
}


.new-features-list li.appear-animation .feature-icon {
  animation: none;
}

.new-features-list li.appear-animation::before {
  content: none;
}


@keyframes fadeIn {
  from, to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%, 50%, 100% {
    transform: none;
  }
}

@keyframes featureIconPop {
  0%, 50%, 100% {
    transform: none;
    color: inherit;
  }
}

@keyframes featureBgPulse {
  0%, 50%, 100% {
    opacity: 0;
  }
}


.blog-intro__wrapper * {
  opacity: 1;
  transform: none;
}

.blog-intro__heading.appear-animation,
.blog-intro__subheading.appear-animation {
  transition-delay: 0s;
}


@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}