:root {
  --primary-blue: #5B5FFF;
  --primary-dark: #4844FF;
  --light-bg: #E8EBFF;
  --light-bg-2: #F3F5FF;
  --accent-purple: #7C3AED;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --border-color: #E5E7EB;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(91, 95, 255, 0.15);
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.5px; }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.875rem; }
h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.625rem; }
h6 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-light); font-size: 1rem; line-height: 1.75; }

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

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

/* Header & Navigation */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
}

.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  margin-left: 1rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links a.active {
  color: var(--primary-blue);
  font-weight: 700;
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(91, 95, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(91, 95, 255, 0.4);
}

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

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

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

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

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: var(--light-bg);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  min-height: 40px;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  color: white;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  max-width: 600px;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-blue);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card h3 {
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(91, 95, 255, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Rating */
.rating {
  display: flex;
  gap: 0.75rem;
  font-size: 2rem;
}

.rating-star {
  cursor: pointer;
  color: #ddd;
  transition: all 0.2s ease;
  transform: scale(1);
}

.rating-star:hover,
.rating-star.active {
  color: var(--warning);
  transform: scale(1.2);
}

/* Sections */
section {
  padding: 4rem 1.5rem;
}

section.light {
  background-color: var(--light-bg-2);
}

section.gradient {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-2) 100%);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0F1419 0%, #1A1E2E 50%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
  width: 100%;
  box-sizing: border-box;
}

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

.footer-content {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}

/* Desktop - Ensure 4 columns */
@media (min-width: 1200px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 0.75rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
  text-decoration: none;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-newsletter input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(91, 95, 255, 0.15);
  border-radius: 50%;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  max-width: 100%;
  border-top: 1px solid rgba(91, 95, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-blue);
}

/* Legacy .footer-grid support for desktop display */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.footer-grid h4 {
  color: white;
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 0.75rem;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

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

.footer-grid ul li {
  margin-bottom: 0.75rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-grid a:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
  text-decoration: none;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Article */
.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 800px;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.25rem;
}

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

.article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

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

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-muted { color: var(--text-light); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.px-2 { padding: 0 1rem; }
.py-2 { padding: 1rem 0; }

.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: var(--light-bg);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.badge-primary {
  background-color: rgba(91, 95, 255, 0.15);
  color: var(--primary-blue);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

/* Alerts */
.alert {
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

/* Loading */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--light-bg);
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 768px) {
  :root { font-size: 15px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }

  nav { padding: 1rem 1rem; justify-content: space-between; }

  .logo { font-size: 1rem; gap: 0.5rem; }
  .logo img { height: 60px; width: 60px; }

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active { opacity: 1; visibility: visible; }
  .nav-links a { padding: 0.75rem 0.5rem; font-size: 1rem; }

  .auth-buttons { position: fixed; top: 60px; right: 1rem; flex-direction: row; gap: 0.5rem; z-index: 1000; }
  .auth-buttons .btn { padding: 0.5rem 0.75rem; font-size: 0.85rem; }

  .hero { padding: 2.5rem 1rem; min-height: auto; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .hero-cta { gap: 0.75rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .card { padding: 1.5rem; }
  .card-header { gap: 1rem; }
  .card-icon { width: 50px; height: 50px; font-size: 2rem; }

  section { padding: 2.5rem 1rem; }
  .btn { padding: 0.75rem 1.25rem; min-height: 44px; }

  .form-group { margin-bottom: 1.25rem; }
  .form-group input, .form-group textarea, .form-group select { padding: 0.75rem; font-size: 16px; }

  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .article-content { font-size: 1rem; }
  .related-articles { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { font-size: 14px; }
  body { font-size: 14px; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }

  nav { padding: 0.875rem 0.75rem; }
  .logo { font-size: 0.95rem; }
  .logo img { height: 50px; width: 50px; }

  .auth-buttons { position: static; flex-direction: row; }
  .nav-links { top: 55px; padding: 1rem; }

  .hero { padding: 2rem 1rem; }
  .hero h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-cta { flex-direction: column; gap: 0.75rem; }

  .btn { width: 100%; padding: 0.75rem; min-height: 48px; font-size: 1rem; }
  .btn-small { width: auto; padding: 0.5rem 0.75rem; min-height: 40px; }

  section { padding: 2rem 1rem; }

  .card { padding: 1.25rem; }
  .card-header { flex-direction: column; gap: 0.75rem; }
  .card-icon { width: 45px; height: 45px; font-size: 1.75rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }

  .rating { font-size: 1.75rem; gap: 0.5rem; }
  .footer-content { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-section h4 { font-size: 0.95rem; }
  .footer-grid h4 { font-size: 0.95rem; }

  .form-group label { font-size: 0.9rem; }
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; padding: 0.75rem; }

  .article-content { font-size: 0.95rem; }

  /* Optimize for touch */
  .btn, .card, a { -webkit-tap-highlight-color: transparent; }
  .container { padding: 0 1rem; }

  /* Better spacing and inputs for mobile */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Performance - Optimize above the fold */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[loading="lazy"] {
  background: linear-gradient(90deg, var(--light-bg), var(--light-bg-2));
}

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

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-muted { color: var(--text-light); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.px-2 { padding: 0 1rem; }
.py-2 { padding: 1rem 0; }

.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: var(--light-bg);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.badge-primary {
  background-color: rgba(91, 95, 255, 0.15);
  color: var(--primary-blue);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

/* Alerts */
.alert {
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

/* Loading */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--light-bg);
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Speeedyy Professional Advertisement Placements Start */
.speeedyy-ad-label {
    margin: 0 0 8px;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.speeedyy-ad-slot {
    max-width: 100%;
    overflow: hidden;
}

.speeedyy-ad-rail {
    display: none;
}

.speeedyy-bottom-ad {
    width: min(1100px, calc(100% - 32px));
    margin: 28px auto;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    text-align: center;
}

.speeedyy-ad-slot--native {
    width: 100%;
    min-height: 90px;
    max-height: 320px;
    overflow: hidden;
}

@media (min-width: 1760px) and (min-height: 700px) {
    .speeedyy-ad-rail--left {
        position: fixed !important;
        z-index: 20;
        top: 300px !important;
        left: max(8px, calc((100vw - 1400px) / 2 - 170px)) !important;
        display: block !important;
        width: 160px;
        height: 600px;
        overflow: hidden;
    }

    .speeedyy-ad-slot--skyscraper {
        width: 160px;
        height: 600px;
        overflow: hidden;
    }
}

@media (max-width: 1759px), (max-height: 699px) {
    .speeedyy-ad-rail--left {
        display: none !important;
    }
}

@media print {
    .speeedyy-ad-rail,
    .speeedyy-bottom-ad {
        display: none !important;
    }
}
/* Speeedyy Professional Advertisement Placements End */
