:root {
  --primary-color: #4527a0;
  --secondary-color: #7b1fa2;
  --accent-color: #ff9800;
  --text-color: #333333;
  --light-text: #ffffff;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --gray-bg: #f1f1f1;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

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

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

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

.btn-accept:hover {
  background-color: #388e3c;
}

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

.btn-decline {
  background-color: #9e9e9e;
}

.btn-decline:hover {
  background-color: #757575;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary-color);
  font-size: 1.1rem;
  padding: 14px 28px;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.read-more:hover {
  border-bottom: 2px solid var(--primary-color);
}

/* Header */
header {
  background-color: var(--light-text);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

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: 15px;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

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

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

nav ul li a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-color);
  transition: var(--transition);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

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

/* Page Header */
.page-header {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 50px;
}

.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

/* Featured Posts */
.featured-posts, .blog-posts {
  padding: 70px 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.full-width {
  grid-template-columns: 1fr;
}

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

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

.post-image {
  position: relative;
  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);
}

.view-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.icon-eye {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.post-content h3 a {
  color: var(--text-color);
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

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

.full-width .post-card {
  display: flex;
  flex-direction: column;
}

.full-width .post-image {
  height: 300px;
}

.full-width .post-content {
  padding: 25px;
}

.full-width h3 {
  font-size: 1.5rem;
}

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

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

.newsletter p {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.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;
  background-color: var(--accent-color);
  padding: 0 25px;
}

.newsletter-form button:hover {
  background-color: #e68900;
}

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

.about-info, .about-values {
  margin-bottom: 40px;
}

.team-section {
  padding: 0 0 70px;
}

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

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

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

.team-member h3 {
  margin: 15px 0 5px;
  font-size: 1.3rem;
}

.team-member p {
  padding: 0 15px;
  margin-bottom: 15px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Contact Page */
.contact-content {
  padding: 0 0 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.icon-location {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234527a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.icon-phone {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234527a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.icon-envelope {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234527a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

.social-connect h4 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
}

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

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

.contact-form-container {
  background-color: var(--light-text);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(69, 39, 160, 0.1);
}

/* Blog Post */
.blog-post {
  margin-bottom: 50px;
}

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

.post-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.post-featured-image {
  width: 100%;
  height: 500px;
  margin-bottom: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.post-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.post-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.post-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.post-content blockquote p {
  margin-bottom: 10px;
}

.post-content blockquote cite {
  font-style: normal;
  font-weight: 600;
}

.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.post-tags span {
  margin-right: 10px;
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 5px 15px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #f1f1f1;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.post-share {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.post-share span {
  margin-right: 15px;
  font-weight: 600;
}

.social-share {
  display: flex;
}

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

.social-share a:hover {
  transform: translateY(-3px);
}

.social-share a:nth-child(1):hover {
  background-color: #3b5999;
  color: white;
}

.social-share a:nth-child(2):hover {
  background-color: #1da1f2;
  color: white;
}

.social-share a:nth-child(3):hover {
  background-color: #0077b5;
  color: white;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

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

.prev-post a, .next-post a {
  display: block;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.prev-post a:hover, .next-post a:hover {
  background-color: #f1f1f1;
}

.prev-post span, .next-post span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.prev-post h4, .next-post h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

.related-posts {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 40px;
}

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

/* Custom Lists */
.custom-list {
  list-style: none;
  margin-bottom: 25px;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Event Cards */
.event-card {
  background-color: var(--light-text);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.event-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.event-card p {
  margin-bottom: 10px;
}

.event-link {
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
}

/* Streamer Profiles */
.streamer-profile {
  background-color: var(--light-text);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.streamer-profile h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.streamer-details {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  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: var(--light-text);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 20px;
  text-align: center;
}

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

.cookie-content a {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

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

.footer-links h3, .footer-contact h3, .footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

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

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

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
}

.legal-links a {
  color: #bbb;
  margin-left: 20px;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .post-featured-image {
    height: 400px;
  }
  
  .post-header h2 {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 15px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: 15px;
    justify-content: center;
  }
  
  .legal-links a {
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .post-grid, .related-posts .post-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .post-navigation {
    flex-direction: column;
  }
  
  .prev-post, .next-post {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .next-post {
    text-align: left;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}
