/* 
  GeoNO Gaming News Styles
  Modern gaming news blog design
*/

/* Base & Typography */
:root {
  --primary-color: #ff4757;
  --secondary-color: #5352ed;
  --accent-color: #ffa502;
  --dark-color: #2f3542;
  --darker-color: #1e272e;
  --light-color: #f1f2f6;
  --gray-color: #a4b0be;
  --success-color: #2ed573;
  --error-color: #ff6b81;
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
  --container-width: 1200px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: #e74c3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
  height: 50px;
  border-radius: 0;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Featured Section */
.featured {
  padding: 80px 0;
}

.featured h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.featured h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.featured-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.featured-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.featured-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.featured-item h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.featured-item p {
  padding: 0 20px;
  color: #666;
}

.read-more {
  display: block;
  padding: 10px 20px 20px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.read-more::after {
  content: '→';
  display: inline-block;
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 15px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--gray-color);
}

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

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

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

/* Page Header */
.page-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 15px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Blog Posts Grid */
.blog-posts {
  padding: 80px 0;
}

.post-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 2px solid var(--gray-color);
  color: var(--dark-color);
  padding: 8px 20px;
  margin: 0 10px 10px;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.post-content {
  padding: 25px;
}

.post-category {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.post-excerpt {
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  font-size: 0.85rem;
  color: var(--gray-color);
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.post-date, .post-author {
  margin-right: 15px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.current-page, .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  font-weight: 700;
}

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

.page-link {
  background-color: white;
  color: var(--dark-color);
  transition: var(--transition);
}

.page-link:hover {
  background-color: var(--gray-color);
  color: white;
}

.next-page {
  background-color: white;
  color: var(--dark-color);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  transition: var(--transition);
}

.next-page:hover {
  background-color: var(--primary-color);
  color: white;
}

.next-page svg {
  margin-left: 5px;
}

/* About Page */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  margin-bottom: 30px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-values {
  margin-bottom: 80px;
}

.mission-values h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.mission-values h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.value-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
}

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

.team-section {
  margin-bottom: 80px;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

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

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-card h3 {
  padding: 20px 20px 5px;
  margin-bottom: 0;
}

.team-card p {
  padding: 0 20px;
  margin-bottom: 10px;
  color: #666;
}

.team-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.team-social {
  display: flex;
  justify-content: center;
  padding: 0 20px 20px;
}

.team-social a {
  color: var(--dark-color);
  margin: 0 10px;
  transition: var(--transition);
}

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

.join-team {
  text-align: center;
  background-color: var(--secondary-color);
  padding: 60px;
  border-radius: var(--border-radius);
  color: white;
}

.join-team h2 {
  color: white;
  margin-bottom: 20px;
}

.join-team p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 30px;
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
}

.contact-info p {
  color: #666;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 5px;
}

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

.social-connect {
  margin-top: 40px;
}

.social-connect h3 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-color);
  color: white;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-form h2 {
  margin-bottom: 30px;
  position: relative;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 82, 237, 0.2);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

.map-section {
  padding: 0 0 80px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.map-section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Post */
.blog-post {
  padding: 80px 0;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
}

.post-header h1 {
  max-width: 800px;
  margin: 0 auto 20px;
}

.post-header .post-meta {
  justify-content: center;
}

.featured-image {
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.post-content {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.post-content p {
  margin-bottom: 20px;
  color: #444;
}

.post-content ul,
.post-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 10px;
  position: relative;
}

.post-content ul li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content a {
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  margin: 30px 0;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  background-color: #f9f9f9;
  font-style: italic;
}

.post-content blockquote p:last-child {
  margin-bottom: 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tags-title {
  font-weight: 700;
  margin-right: 15px;
  color: var(--dark-color);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
}

.tags-list li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.tags-list a {
  display: inline-block;
  background-color: #f0f0f0;
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tags-list a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.share-title {
  font-weight: 700;
  margin-right: 15px;
  color: var(--dark-color);
}

.share-buttons {
  display: flex;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-color);
  color: white;
  margin-right: 10px;
  transition: var(--transition);
}

.share-buttons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.post-author-bio {
  display: flex;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.author-avatar {
  flex-shrink: 0;
  margin-right: 20px;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 10px;
}

.author-info p {
  color: #666;
  margin-bottom: 15px;
}

.author-social a {
  color: var(--dark-color);
  margin-right: 15px;
  transition: var(--transition);
}

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

.related-posts {
  margin-bottom: 60px;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.related-posts h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.related-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.related-post h3 {
  padding: 20px 20px 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.related-post .read-more {
  padding: 0 20px 20px;
}

.post-comments {
  max-width: 800px;
  margin: 0 auto;
}

.post-comments h2 {
  margin-bottom: 40px;
  position: relative;
}

.post-comments h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
}

.comments-list {
  margin-bottom: 50px;
}

.comment {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.comment:last-child {
  border-bottom: none;
}

.comment-reply {
  margin-left: 50px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: var(--border-radius);
  border-bottom: none;
}

.comment-avatar {
  flex-shrink: 0;
  margin-right: 20px;
}

.comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header h4 {
  margin-bottom: 0;
}

.comment-date {
  font-size: 0.85rem;
  color: var(--gray-color);
}

.comment-content p {
  margin-bottom: 15px;
  color: #444;
}

.reply-btn {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.reply-btn:hover {
  color: var(--primary-color);
}

.comment-form h3 {
  margin-bottom: 30px;
}

/* Footer */
footer {
  background-color: var(--darker-color);
  color: white;
  padding: 80px 0 20px;
}

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

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 25px;
  position: relative;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-about p {
  color: var(--gray-color);
  margin-bottom: 25px;
}

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

.footer-links ul li a {
  color: var(--gray-color);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  color: var(--gray-color);
  margin-bottom: 15px;
}

.footer-contact svg {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(47, 53, 66, 0.95);
  padding: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  color: white;
}

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cookie-btn {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.accept {
  background-color: var(--success-color);
  color: white;
}

.customize {
  background-color: white;
  color: var(--dark-color);
}

.decline {
  background-color: var(--gray-color);
  color: white;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-size: 0.9rem;
}

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

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

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content p {
  color: #666;
  margin-bottom: 25px;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .featured-grid,
  .posts-grid,
  .team-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-avatar {
    margin: 0 auto 20px;
  }
  
  .post-header .post-meta {
    flex-direction: column;
  }
  
  .post-date, .post-author {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    margin: 0 0 15px;
  }
  
  .comment-reply {
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .filter-btn {
    margin: 0 5px 10px;
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  
  .post-share, .post-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .share-title, .tags-title {
    margin-bottom: 10px;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}
