/* 
 * CS Gaming Hub Main Stylesheet
 * Modern design for a CS2 and buff163 focused gaming blog
 */

/* ---------- Base Styles ---------- */
:root {
  --primary-color: #4a90e2;
  --primary-dark: #3a7ac8;
  --primary-light: #6ba5ea;
  --secondary-color: #ff5722;
  --secondary-dark: #e64a19;
  --accent-color: #8bc34a;
  --dark-color: #2c3e50;
  --darker-color: #1a2530;
  --light-color: #ecf0f1;
  --gray-color: #95a5a6;
  --gray-dark: #7f8c8d;
  --gray-light: #bdc3c7;
  --danger-color: #e74c3c;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --info-color: #3498db;
  
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Montserrat', 'Roboto', sans-serif;
  --container-width: 1200px;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f5f7fa;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.0rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.6rem;
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1.6rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.8rem;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-tertiary {
  background-color: var(--gray-color);
}

.btn-tertiary:hover {
  background-color: var(--gray-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-small {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.btn-large {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}

/* ---------- Header ---------- */
header {
  background-color: var(--dark-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

.logo h1 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 0;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 0 0 2.5rem;
}

nav ul li a {
  color: var(--light-color);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

nav ul li a:hover {
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
}

nav ul li a.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
}

/* ---------- Hero Section ---------- */
.hero {
  background-color: var(--darker-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  margin-bottom: 6rem;
}

.hero-content {
  max-width: 700px;
}

.hero h2 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: white;
}

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

/* ---------- Featured Posts ---------- */
.featured-posts {
  padding: 6rem 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.post-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
}

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

/* ---------- Blog Posts Page ---------- */
.page-header {
  background-color: var(--dark-color);
  color: white;
  padding: 6rem 0;
  margin-bottom: 6rem;
  text-align: center;
}

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

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
}

.blog-posts {
  padding: 0 0 6rem 0;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-post:hover {
  box-shadow: var(--box-shadow-hover);
}

.blog-post .post-image {
  height: 100%;
}

.blog-post .post-content {
  padding: 3rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

.post-meta .date, .post-meta .category {
  display: flex;
  align-items: center;
}

.post-meta .category {
  background-color: var(--primary-light);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 3rem;
}

.blog-post h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.blog-post .btn {
  margin-top: 1rem;
}

/* ---------- Single Post ---------- */
.blog-post-single {
  padding: 0 0 6rem 0;
}

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

.post-header h1 {
  font-size: 3.6rem;
  margin: 1.5rem 0 3rem;
}

.post-header .post-image {
  height: auto;
  max-height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-content {
  background: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-content h2 {
  font-size: 2.8rem;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content h3 {
  font-size: 2.2rem;
  margin: 3rem 0 1.5rem;
}

.post-content ul, .post-content ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.post-content img {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
  font-style: italic;
  color: var(--text-light);
  margin: 2rem 0;
}

.post-tags {
  margin: 4rem 0;
}

.post-tags a {
  display: inline-block;
  background: var(--gray-light);
  color: var(--text-color);
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background: var(--primary-light);
  color: white;
  text-decoration: none;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
}

.prev-post, .next-post {
  max-width: 45%;
}

.prev-post a, .next-post a {
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: block;
  transition: var(--transition);
}

.prev-post a:hover, .next-post a:hover {
  box-shadow: var(--box-shadow-hover);
  text-decoration: none;
}

.related-posts h3 {
  margin-bottom: 3rem;
}

.related-posts .post-grid {
  grid-template-columns: repeat(3, 1fr);
}

.related-posts .post-content h4 {
  font-size: 1.8rem;
}

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

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

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  margin-bottom: 2rem;
}

.our-mission {
  background-color: var(--light-color);
  padding: 6rem 0;
}

.mission-content h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.mission-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.mission-card .icon {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.mission-card h3 {
  margin-bottom: 1.5rem;
}

.team {
  padding: 6rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.team-member {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-member h3, .team-member p {
  padding: 0 2rem;
}

.team-member h3 {
  margin: 2rem 0 0.5rem;
  font-size: 2rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem 2rem;
}

.team-member .social-icons a {
  color: var(--gray-color);
  transition: var(--transition);
}

.team-member .social-icons a:hover {
  color: var(--primary-color);
}

.testimonials {
  background-color: var(--light-color);
  padding: 6rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author p {
  margin-bottom: 0;
}

/* ---------- Contact Page ---------- */
.contact-section {
  padding: 6rem 0;
}

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

.contact-info h2, .contact-form h2 {
  margin-bottom: 3rem;
}

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

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

.info-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0;
  color: var(--text-light);
}

.social-media {
  margin-top: 4rem;
}

.social-media h3 {
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--light-color);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

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

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

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

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.map-section {
  padding: 0 0 6rem 0;
}

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

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

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

.modal-content {
  background-color: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  position: relative;
  box-shadow: var(--box-shadow-hover);
}

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

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--success-color);
  margin-bottom: 2rem;
}

.thank-you-message h2 {
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  margin-bottom: 2.5rem;
}

/* ---------- Countdown Section ---------- */
.countdown-section {
  background-color: var(--dark-color);
  color: white;
  padding: 6rem 0;
  text-align: center;
  margin-bottom: 6rem;
}

.countdown-section h2 {
  color: white;
  margin-bottom: 3rem;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.countdown-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  min-width: 10rem;
}

.countdown-item span {
  font-size: 3.6rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.countdown-item p {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Comparison Section ---------- */
.comparison {
  padding: 6rem 0;
}

.comparison h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.comparison th, .comparison td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.comparison th {
  background-color: var(--dark-color);
  color: white;
  font-weight: 600;
}

.comparison tr:last-child td {
  border-bottom: none;
}

.comparison tr:hover td {
  background-color: var(--light-color);
}

/* ---------- Special Content Boxes ---------- */
.info-box, .warning-box, .security-checklist, .winner-box {
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: var(--border-radius);
  background-color: rgba(74, 144, 226, 0.1);
  border-left: 4px solid var(--primary-color);
}

.info-box h3, .warning-box h3, .security-checklist h3, .winner-box h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.warning-box {
  background-color: rgba(231, 76, 60, 0.1);
  border-left-color: var(--danger-color);
}

.warning-box h3 {
  color: var(--danger-color);
}

.security-checklist {
  background-color: rgba(39, 174, 96, 0.1);
  border-left-color: var(--success-color);
}

.security-checklist h3 {
  color: var(--success-color);
}

.security-checklist ul {
  list-style: none;
  padding-left: 0;
}

.security-checklist li {
  margin-bottom: 0.8rem;
}

.comparison-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.comparison-table th {
  background-color: var(--dark-color);
  color: white;
}

.winner-box {
  background-color: rgba(39, 174, 96, 0.1);
  border-left-color: var(--success-color);
  text-align: center;
}

.winner-box h4 {
  color: var(--success-color);
}

/* ---------- Newsletter ---------- */
.newsletter, .cta {
  background-color: var(--dark-color);
  padding: 6rem 0;
  text-align: center;
  color: white;
}

.newsletter h2, .cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.newsletter p, .cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

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

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

/* ---------- Footer ---------- */
footer {
  background-color: var(--darker-color);
  color: white;
  padding: 6rem 0 2rem;
}

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

.footer-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3, .footer-social h3, .footer-contact h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-social .social-icons {
  margin-top: 1.5rem;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-social .social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-contact svg {
  margin-right: 1rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: white;
  padding: 2rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
}

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

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

.cookie-content a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.cookie-content a:hover {
  color: white;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 55%;
  }
  
  .post-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 300px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .related-posts .post-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1.5rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0.5rem 1rem;
  }
  
  .hero {
    padding: 6rem 0;
  }
  
  .hero h2 {
    font-size: 3.6rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
  
  .post-header h1 {
    font-size: 3rem;
  }
  
  .post-content {
    padding: 2.5rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .prev-post, .next-post {
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .post-content h2 {
    font-size: 2.4rem;
  }
  
  .post-content h3 {
    font-size: 2rem;
  }
  
  #countdown {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    min-width: 40%;
  }
  
  .modal-content {
    padding: 2.5rem;
    margin: 0 1.5rem;
  }
}
