/* 
 * CS Gaming Hub Styles
 * A modern, responsive stylesheet for a CS2 skins and gaming blog
 */

/* Base Styles and Variables */
:root {
  --primary-color: #ff6b00;
  --secondary-color: #2563eb;
  --dark-color: #111827;
  --dark-color-lighter: #1f2937;
  --light-color: #f9fafb;
  --light-gray: #e5e7eb;
  --mid-gray: #9ca3af;
  --text-color: #374151;
  --text-color-light: #f3f4f6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Dark Theme */
[data-theme="dark"] {
  --primary-color: #ff8c38;
  --secondary-color: #3b82f6;
  --dark-color: #f9fafb;
  --dark-color-lighter: #e5e7eb;
  --light-color: #111827;
  --light-gray: #1f2937;
  --mid-gray: #6b7280;
  --text-color: #e5e7eb;
  --text-color-light: #1f2937;
}

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
}

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

.btn.primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn.secondary {
  background-color: var(--light-gray);
  color: var(--text-color);
}

.btn.secondary:hover {
  background-color: var(--mid-gray);
  color: white;
  transform: translateY(-2px);
}

.btn.tertiary {
  background-color: transparent;
  border: 1px solid var(--mid-gray);
  color: var(--text-color);
}

.btn.tertiary:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

/* Header */
header {
  background-color: var(--light-color);
  border-bottom: 1px solid var(--light-gray);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
  border-radius: 50%;
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

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

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.theme-toggle {
  display: flex;
  align-items: center;
}

#theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

#theme-toggle-btn:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Featured Section */
.featured {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.featured h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

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

.featured-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.featured-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.featured-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.featured-card p {
  padding: 0 1.5rem;
  color: var(--text-color);
}

.featured-card .read-more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
}

/* Beginners Guide */
.beginners-guide {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.beginners-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.beginners-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.beginners-list {
  margin-bottom: 2rem;
}

.beginners-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.beginners-list .icon {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-weight: bold;
}

.beginners-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Latest Posts */
.latest-posts {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.latest-posts h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
}

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

.post-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.post-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: var(--mid-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.post-card .read-more {
  margin-top: auto;
  font-weight: 600;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background-color: var(--dark-color-lighter);
  color: var(--text-color-light);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  margin-bottom: 1rem;
}

.form-group input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.form-group button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--text-color-light);
  padding: 4rem 0 2rem;
}

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

.footer-about img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.footer-about p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
  color: var(--mid-gray);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
}

.footer-contact ul li {
  display: flex;
  margin-bottom: 0.75rem;
  align-items: center;
}

.footer-contact ul li svg {
  margin-right: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--mid-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-color);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--light-color);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-more {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Page Banner */
.page-banner {
  padding: 5rem 0;
  background-color: var(--dark-color-lighter);
  color: white;
  text-align: center;
}

.page-banner h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Page */
.blog-content {
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-image {
  height: 100%;
}

.blog-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-text {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.blog-meta .date {
  color: var(--mid-gray);
}

.blog-meta .category {
  background-color: var(--light-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  color: var(--text-color);
  font-weight: 600;
}

.blog-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.blog-text p {
  margin-bottom: 1.5rem;
}

/* CS2 Skins Page */
.skins-intro {
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.intro-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-text {
  font-size: 1rem;
  color: var(--text-color);
}

.intro-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.skin-categories {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
}

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

.category-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 2rem;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.category-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.category-card h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.25rem;
}

.category-card p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.trading-platforms {
  padding: 4rem 0;
}

.platforms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.platforms-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.platforms-list {
  margin-bottom: 2rem;
}

.platforms-list li {
  margin-bottom: 1.5rem;
}

.platforms-list h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.platforms-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.market-analysis {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

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

.market-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.market-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.market-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.market-card p {
  margin-bottom: 0;
}

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

.faq {
  padding: 4rem 0;
}

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

.faq-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* About Us Page */
.about-intro {
  padding: 4rem 0;
}

.our-values {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

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

.value-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.value-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card p {
  margin-bottom: 0;
}

.team {
  padding: 4rem 0;
}

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

.team-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.team-card h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.25rem;
}

.team-card p {
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-card .social-links {
  margin: 1.5rem 0;
  justify-content: center;
}

.company-info {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

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

.info-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.info-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-card p {
  margin-bottom: 0;
}

.join-us {
  padding: 4rem 0;
  background-color: var(--dark-color-lighter);
  color: white;
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.join-content h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.join-content p {
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

/* Contact Page */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  margin-right: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: flex-start;
}

.info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.social-connect {
  margin-top: 3rem;
}

.social-connect h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-form-container {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
  display: block;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-family);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.4rem;
}

.map-section {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-faq {
  background-color: var(--light-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.check-icon {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal p {
  margin-bottom: 2rem;
}

/* Blog Post */
.blog-post {
  padding: 4rem 0;
}

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

.post-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 1.25rem;
  color: var(--text-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
}

.post-image {
  margin-bottom: 2rem;
}

.post-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-content p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.post-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.post-content ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.post-tags {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background-color: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.share-post {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--light-gray);
  text-align: center;
}

.share-post h3 {
  margin-bottom: 1.5rem;
}

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

.share-buttons a {
  color: var(--mid-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
}

.share-buttons a:hover {
  color: white;
  background-color: var(--primary-color);
}

.related-posts {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--light-gray);
}

.related-posts h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

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

.related-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.related-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.related-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.related-card p {
  padding: 0 1.5rem;
  color: var(--text-color);
}

.related-card .read-more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .post-header h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero .container,
  .beginners-content,
  .platforms-content,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title,
  .featured h2,
  .latest-posts h2 {
    font-size: 1.75rem;
  }
  
  .newsletter h2 {
    font-size: 1.75rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-excerpt {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-group input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .form-group button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
