/* Global styles */
:root {
  --primary-red: #FF0033;
  --primary-blue: #007bff;
  --dark-blue: #0056b3;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --gradient-start: #0f172a;
  --gradient-mid: #1e3a8a;
  --gradient-end: #0c4a6e;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  background-attachment: fixed; /* Keeps the gradient fixed during scroll */
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Header styles */
.site-header {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px;
}

.logo-container {
  margin-bottom: 20px;
  background: transparent;
}

.site-logo {
  max-width: 450px;
  height: auto;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Blog post styles */
.blog-post {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

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

.blog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5em;
  color: var(--primary-red);
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
}

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

/* Section styles */
.content-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
  backdrop-filter: blur(5px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #fff;
}

h2 {
  color: var(--primary-red);
  font-size: 1.8em;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

p {
  margin-bottom: 1.2em;
  color: rgba(255, 255, 255, 0.9);
}

ul, ol {
  margin-bottom: 1.5em;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
}

li {
  margin-bottom: 0.5em;
}

/* Link styles */
a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #60a5fa;
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

th, td {
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: #fff;
}

tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Footer styles */
.footer-content {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 40px 20px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-disclaimer {
  margin-bottom: 30px;
}

.copyright-disclaimer h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  color: var(--primary-red);
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-info {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .blog-post {
    padding: 20px;
  }

  .blog-title {
    font-size: 2em;
  }

  .content-section {
    padding: 20px;
  }
}
