/* ============================================
   MOBILE RESPONSIVE WEBSITE STYLES
   ============================================ */

/* ============================================
   BASE STYLES (Mobile First)
   ============================================ */

html,
body {
  margin: 0;
  touch-action: manipulation;
}

/* Buttons */
.myButton {
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  background: linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
  background-color: #33bdef;
  border-radius: 6px;
  border: 1px solid #057fd0;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}

.myButton2 {
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  background: linear-gradient(to bottom, #D3D3D3 5%, #808080 100%);
  border-radius: 6px;
  border: 1px solid #AAAAAA;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
  margin-bottom: 50px;
}

.myButton:hover {
  background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
  background-color: #019ad2;
}

.myButton:active {
  position: relative;
  top: 1px;
}

/* Article Styles */
.articlesection {
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.imagediv {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* 16:9 Aspect Ratio Container */
.imagediv::before {
  content: '';
  display: block;
  padding-top: 56.25%;
  /* 16:9 ratio = 9/16 * 100 */
}

.imagediv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.article_title,
.article_meta {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.article_title {
  font-size: 50px;
}

.article_bodydiv {
  width: 1000px;
  flex-wrap: wrap;
  text-align: left;
  margin: 10px;
  padding: 10px;
}

.article_body {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.article_body p {
  margin: 0;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 10px;
}

.article_image {
  border: solid black 1px;
}

.blogpic {
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 1rem auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Subcontent Grid */
.section-container {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
  padding-bottom: 15px;
}

.section-title {
  margin-top: 40px;
}

.subcontdiv {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

.subcont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 130px;
  padding-top: 100px;
}

.subgen,
.subgen1,
.subgen2,
.subgen3,
.subgen4,
.subgen5,
.subgen6,
.subgen7,
.subgen8,
.subgen9 {
  background: rgba(248, 248, 248, 0.1);
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.subgen:hover,
.subgen1:hover,
.subgen2:hover,
.subgen3:hover,
.subgen4:hover,
.subgen5:hover,
.subgen6:hover,
.subgen7:hover,
.subgen8:hover,
.subgen9:hover {
  background: rgba(248, 248, 248, 0.3);
  box-shadow: 0 1px 2px rgba(255, 221, 0, 0.505);
}

/* Blog Signature */
.blogsignature {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd5b;
  border-radius: 8px;
}

.signaturebox {
  display: flex;
}

.pfplinkstack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sigpfp,
.siglinks {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.blogsignature .footercontainer {
  margin-left: -10px;
}

.sigcontainer {
  display: flex;
  flex-direction: column;
}

.sigpfp {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 10px;
}

.sigpic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sigbody {
  margin-left: 20px;
}

.siglinks {
  margin-top: 10px;
}

/* ============================================
   AD CONTAINERS (Hidden on mobile/tablet)
   ============================================ */

@media only screen and (min-width: 375px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 1024px) {
  .adcontainers {
    display: none;
  }
}

/* ============================================
   LARGE DESKTOP ADJUSTMENTS (1440px-1600px)
   ============================================ */

@media only screen and (min-width: 1440px) and (max-width: 1600px) {
  .socialsearcher {
    position: absolute;
    left: auto;
    transform: translateX(-150%);
    display: flex;
  }

  .footagecrate {
    position: absolute;
    right: 0;
    transform: translate(-30%, 60%);
    display: flex;
  }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Small Phones (320px and below) */
@media only screen and (max-width: 320px) {

  /* Typography */
  h1 {
    font-size: 20px;
    line-height: 1.3;
    margin: 15px 0;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Navigation */
  .navcontainer {
    height: 50px;
    padding: 0 8px;
  }

  .leftnav svg {
    width: 25px;
    height: 25px;
  }

  .navtxt {
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 8px;
  }

  /* Article content */
  .article_title {
    font-size: 20px;
    padding: 8px;
  }

  .article_bodydiv {
    padding: 8px;
    width: 100%;
  }

  .imagediv {
    height: 180px;
  }

  /* Touch targets */
  .share-button {
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
  }

  .myButton,
  .myButton2,
  .browse-button {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 48px;
  }

  /* Footer */
  .footertext {
    font-size: 9px;
    padding: 6px 8px;
  }

  /* Blog cards */
  .blog-card-content {
    padding: 12px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-card-description {
    font-size: 12px;
  }
}

/* Mobile Phones (321px to 480px) */
@media only screen and (min-width: 321px) and (max-width: 480px) {

  /* Typography */
  h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  h3 {
    font-size: 19px;
    line-height: 1.4;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Navigation */
  .navcontainer {
    height: 55px;
    padding: 0 10px;
  }

  .navtxt {
    font-size: 10px;
    padding: 3px 6px;
  }

  /* Article content */
  .article_title {
    font-size: 22px;
    padding: 10px;
  }

  .article_bodydiv {
    padding: 10px;
    width: 100%;
  }

  .imagediv {
    height: 200px;
  }

  /* Touch targets */
  .share-button {
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
  }

  .myButton,
  .myButton2,
  .browse-button {
    padding: 14px 24px;
    font-size: 15px;
    min-height: 48px;
  }

  /* Footer */
  .footertext {
    font-size: 10px;
    padding: 8px 10px;
  }

  /* Blog cards */
  .blog-card-content {
    padding: 14px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-description {
    font-size: 13px;
  }
}

/* Tablets (481px to 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {

  /* Typography */
  h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Navigation */
  .navcontainer {
    height: 65px;
    padding: 0 15px;
  }

  .navtxt {
    font-size: 11px;
    padding: 4px 8px;
  }

  /* Article content */
  .article_title {
    font-size: 26px;
    padding: 12px;
  }

  .article_bodydiv {
    padding: 12px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .imagediv {
    height: 250px;
  }

  /* Touch targets */
  .share-button {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }

  .myButton,
  .myButton2,
  .browse-button {
    padding: 16px 28px;
    font-size: 16px;
    min-height: 48px;
  }

  /* Footer */
  .footertext {
    font-size: 11px;
    padding: 10px 12px;
  }

  /* Blog cards */
  .blog-card-content {
    padding: 16px;
  }

  .blog-card-title {
    font-size: 20px;
  }

  .blog-card-description {
    font-size: 14px;
  }
}

/* General Mobile Styles (up to 768px) */
@media only screen and (max-width: 768px) {

  /* Basic mobile resets */
  * {
    box-sizing: border-box;
  }

  /* Enhanced Mobile Navigation */
  .navcontainer {
    display: flex;
    flex-direction: row;
    height: 70px;
    width: 100%;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
  }

  .leftnav {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .rightnav {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }

  .navtxtgroup {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .navdivtxt {
    padding: 0;
  }

  .navtxt {
    font-size: 12px;
    padding: 6px 10px;
    border-width: 1px;
    white-space: nowrap;
    border-radius: 15px;
    transition: all 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navtxt:hover {
    background-color: rgba(51, 189, 239, 0.1);
    transform: translateY(-1px);
  }

  .leftnav svg {
    width: 35px;
    height: 35px;
    margin-left: 0;
  }

  /* Main Content */
  .maindiv {
    height: auto;
    min-height: 500px;
    padding: 30px 0;
  }

  .maingroupdiv {
    flex-direction: column;
    gap: 30px;
  }

  .mainl,
  .mainr {
    width: 100%;
    padding: 20px;
  }

  .maintxtcon {
    margin-left: 0;
    text-align: center;
  }

  .maintxth {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .maintxts {
    font-size: 18px;
    line-height: 1.4;
  }

  .mainrdisplay {
    height: 300px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Feature Section */
  .featurediv {
    height: auto;
    min-height: 600px;
    padding: 30px 0;
  }

  .fttop {
    height: auto;
    padding: 30px 0;
  }

  .fttoptxth {
    font-size: 32px;
    line-height: 1.2;
    padding: 0 20px;
  }

  .fttoptxts {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 20px;
  }

  .ftbot {
    height: auto;
    padding: 30px 0;
  }

  /* Article Styles */
  .article_bodydiv {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }

  .article_title {
    font-size: 28px;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
    line-height: 1.3;
  }

  .article_meta {
    text-align: center;
    font-size: 14px;
    margin: 15px 0;
  }

  .imagediv {
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
  }

  .imagediv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Blog Post Content */
  .article_body {
    width: 100%;
    padding: 15px;
  }

  .article_body p {
    font-size: 16px;
    line-height: 1.8;
    margin: 18px 0;
  }

  .blogpic {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }

  /* Blog Grid and Cards */
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
    margin: 0 auto;
  }

  .blog-card {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }

  .blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

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

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .blog-card-description {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Latest Post Preview */
  .latest-post {
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .latest-post-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
  }

  .latest-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

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

  /* Link Preview Embeds */
  .link-preview {
    max-width: 100%;
    margin: 20px auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .preview-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }

  .preview-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .preview-content {
    padding: 20px;
  }

  .preview-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .preview-description {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Blog Signature */
  .blogsignature {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd5b;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
  }

  .signaturebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 600px;
  }

  .pfplinkstack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sigpfp {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .sigbody {
    flex: 1;
    font-family: 'playfair';
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  .siglinks {
    margin-top: 15px;
  }
}

/* ============================================
   ADDITIONAL MOBILE COMPONENTS
   ============================================ */

/* Article List Styling */
.articles__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  margin: 20px auto;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.snippet_image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.snippet_tmb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.snippet_title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #1a1a1a;
}

.snippet_meta {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.snippet_meta span {
  color: #33bdef;
  font-weight: 500;
}

.snippet_body {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.myButton2 {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  align-self: flex-start;
}

/* Mobile Article List */
@media only screen and (max-width: 768px) {
  .articles__list {
    flex-direction: column;
    padding: 15px;
    margin: 15px auto;
    gap: 15px;
    align-items: center;
    max-width: 90%;
  }

  .snippet_image {
    width: 100%;
    max-width: 500px;
    height: 200px;
    margin: 0 auto;
  }

  .snippet_tmb {
    width: 100%;
    max-width: 500px;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .snippet_title {
    font-size: 20px;
    text-align: center;
  }

  .snippet_meta {
    font-size: 12px;
    text-align: center;
  }

  .snippet_body {
    font-size: 14px;
    text-align: center;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .myButton2 {
    font-size: 14px;
    padding: 8px 16px;
    margin: 10px auto 0;
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 24px;
    margin: 20px 0;
  }

  .articles__list {
    padding: 10px;
    margin: 10px auto;
    gap: 12px;
    max-width: 95%;
  }

  .snippet_image {
    height: 180px;
  }

  .snippet_title {
    font-size: 18px;
  }

  .snippet_meta {
    font-size: 11px;
  }

  .snippet_body {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .myButton2 {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Page Title */
h1 {
  text-align: center;
  margin: 30px 0;
  padding: 0 15px;
}

/* Search and Social Components */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.search-input:focus {
  border-color: #33bdef;
  box-shadow: 0 0 0 3px rgba(51, 189, 239, 0.2);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  display: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.search-result {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-result:hover {
  background-color: #f5f5f5;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.2s ease;
  color: #666;
}

.social-link:hover {
  background: #33bdef;
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Mobile Search and Social */
@media (max-width: 768px) {
  .search-container {
    margin: 1rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

/* Split Layout and Notifications */
.split-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.notifications-section,
.browse-section {
  flex: 1;
  max-width: 500px;
  padding: 2rem;
  background: var(--surface1);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text1);
}

.notifications-slideshow {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.notifications-slider {
  position: relative;
  height: 100%;
  transition: transform 0.5s ease;
}

.notification-item {
  position: absolute;
  width: 100%;
  padding: 1rem;
  background: var(--surface2);
  border-radius: 8px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(100%);
}

.notification-item.active {
  opacity: 1;
  transform: translateY(0);
}

.latest-badge {
  display: inline-block;
  background: #33bdef;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.latest-post {
  background: linear-gradient(to bottom right, var(--surface2), #f0f5fa);
  border: 1px solid rgba(51, 189, 239, 0.2);
}

.notification-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.notification-content p {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 0.5rem;
}

.notification-link {
  display: inline-block;
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.notification-link:hover {
  text-decoration: underline;
}

.slider-controls {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background: #33bdef;
}

.browse-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.browse-description {
  color: var(--text2);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.browse-button {
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  background: linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
  background-color: #33bdef;
  border-radius: 6px;
  border: 1px solid #057fd0;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}

.browse-button:hover {
  background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
  background-color: #019ad2;
}

.browse-button:active {
  position: relative;
  top: 1px;
}

/* Mobile Split Layout */
@media (max-width: 768px) {
  .featurediv {
    height: auto;
    min-height: 600px;
    padding: 1rem;
  }

  .split-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .notifications-section,
  .browse-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .notifications-slideshow {
    height: 250px;
  }

  .notification-item {
    padding: 0.75rem;
  }

  .notification-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .notification-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .slider-controls {
    right: 5px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

  .browse-section {
    margin-top: 1rem;
  }

  .browse-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .featurediv {
    min-height: 500px;
  }

  .notifications-slideshow {
    height: 200px;
  }

  .split-container {
    padding: 0.5rem;
  }

  .notifications-section,
  .browse-section {
    padding: 0.75rem;
  }
}

/* Copy Link Functionality */
.copy-link-button {
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: rgba(51, 189, 239, 0.2);
  touch-action: manipulation;
}

.copy-success {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  z-index: 1000;
  font-size: 14px;
}

/* Mobile Copy Functionality */
@media (max-width: 768px) {
  .latest-post {
    padding: 0.75rem;
  }

  .latest-post-image {
    margin-bottom: 0.75rem;
  }

  .copy-link-button {
    padding: 10px;
  }

  .copy-success {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .latest-post {
    padding: 0.5rem;
  }

  .latest-post-image {
    margin-bottom: 0.5rem;
  }
}

/* Social Media Category Pages */
.social-posts-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.social-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-post-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-post-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-platform-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.social-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.social-post-date {
  font-size: 14px;
  color: #666;
}

.social-post-preview {
  display: flex;
  padding: 16px;
  gap: 16px;
}

.social-post-thumbnail {
  width: 180px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.social-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-post-content {
  flex: 1;
}

.social-post-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #666;
}

.social-post-stats {
  display: flex;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Platform-specific colors */
.platform-fb .social-post-header {
  background-color: #f0f2f5;
}

.platform-ig .social-post-header {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.platform-twitter .social-post-header {
  background-color: #1da1f2;
  color: white;
}

.platform-yt .social-post-header {
  background-color: #ff0000;
  color: white;
}

.platform-twitch .social-post-header {
  background-color: #9146ff;
  color: white;
}

.platform-tiktok .social-post-header {
  background-color: #000000;
  color: white;
}

.platform-kick .social-post-header {
  background-color: #53FC18;
  color: white;
}

/* Mobile Social Posts */
@media only screen and (max-width: 768px) {
  .social-posts-container {
    padding: 10px;
  }

  .social-post-list {
    gap: 15px;
  }

  .social-post-preview {
    flex-direction: column;
    padding: 12px;
  }

  .social-post-thumbnail {
    width: 100%;
    height: 200px;
  }

  .social-post-header {
    padding: 10px 12px;
  }

  .social-post-title {
    font-size: 15px;
  }

  .social-post-date {
    font-size: 12px;
  }

  .social-post-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .social-post-meta {
    font-size: 12px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 480px) {
  .social-post-thumbnail {
    height: 160px;
  }

  .social-post-stats {
    flex-wrap: wrap;
  }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Mobile Styles (General, applies up to 768px) */
@media only screen and (max-width: 768px) {

  /* Basic mobile resets */
  * {
    box-sizing: border-box;
  }

  /* Header/Nav - Enhanced Mobile Navigation */
  .navcontainer {
    display: flex;
    flex-direction: row;
    height: 70px;
    width: 100%;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
  }

  .leftnav {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .rightnav {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }

  .navtxtgroup {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .navdivtxt {
    padding: 0;
  }

  .navtxt {
    font-size: 12px;
    padding: 6px 10px;
    border-width: 1px;
    white-space: nowrap;
    border-radius: 15px;
    transition: all 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navtxt:hover {
    background-color: rgba(51, 189, 239, 0.1);
    transform: translateY(-1px);
  }

  /* Logo */
  .leftnav svg {
    width: 35px;
    height: 35px;
    margin-left: 0;
  }

  /* Main Content Adjustments - Improved Layout */
  .maindiv {
    height: auto;
    min-height: 500px;
    padding: 30px 0;
  }

  .maingroupdiv {
    flex-direction: column;
    gap: 30px;
  }

  .mainl,
  .mainr {
    width: 100%;
    padding: 20px;
  }

  .maintxtcon {
    margin-left: 0;
    text-align: center;
  }

  .maintxth {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .maintxts {
    font-size: 18px;
    line-height: 1.4;
  }

  .mainrdisplay {
    height: 300px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Feature Section - Enhanced Mobile Layout */
  .featurediv {
    height: auto;
    min-height: 600px;
    padding: 30px 0;
  }

  .fttop {
    height: auto;
    padding: 30px 0;
  }

  .fttoptxth {
    font-size: 32px;
    line-height: 1.2;
    padding: 0 20px;
  }

  .fttoptxts {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 20px;
  }

  .ftbot {
    height: auto;
    padding: 30px 0;
  }

  /* Article Styles - Mobile Optimized */
  .article_bodydiv {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }

  .article_title {
    font-size: 28px;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
    line-height: 1.3;
  }

  .article_meta {
    text-align: center;
    font-size: 14px;
    margin: 15px 0;
  }

  .imagediv {
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
  }

  .imagediv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Blog Post Content - Enhanced Typography */
  .article_body {
    width: 100%;
    padding: 15px;
  }

  .article_body p {
    font-size: 16px;
    line-height: 1.8;
    margin: 18px 0;
  }

  .blogpic {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }

  /* Blog Grid and Cards - Mobile First */
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
    margin: 0 auto;
  }

  .blog-card {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }

  .blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

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

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .blog-card-description {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Latest Post Preview - Enhanced */
  .latest-post {
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .latest-post-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
  }

  .latest-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

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

  /* Link Preview Embeds - Mobile Optimized */
  .link-preview {
    max-width: 100%;
    margin: 20px auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .preview-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }

  .preview-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .preview-content {
    padding: 20px;
  }

  .preview-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .preview-description {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Blog Signature - Mobile Enhanced */
  .blogsignature {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd5b;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
  }

  .signaturebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 600px;
  }

  .pfplinkstack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sigpfp {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .sigbody {
    flex: 1;
    font-family: 'playfair';
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  .siglinks {
    margin-top: 15px;
  }
}

/* ============================================
   MOBILE-FIRST RESPONSIVE DESIGN - 320px
   ============================================ */

@media only screen and (max-width: 320px) {

  /* Typography - Small phones */
  h1 {
    font-size: 20px;
    line-height: 1.3;
    margin: 15px 0;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Navigation - Very small screens */
  .navcontainer {
    height: 50px;
    padding: 0 8px;
  }

  .leftnav svg {
    width: 25px;
    height: 25px;
  }

  .navtxt {
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 8px;
  }

  /* Article content */
  .article_title {
    font-size: 20px;
    padding: 8px;
  }

  .article_bodydiv {
    padding: 8px;
    width: 100%;
  }

  .imagediv {
    height: 180px;
  }

  /* Touch targets */
  .share-button {
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
  }

  .myButton,
  .myButton2,
  .browse-button {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 48px;
  }

  /* Footer */
  .footertext {
    font-size: 9px;
    padding: 6px 8px;
  }

  /* Blog cards */
  .blog-card-content {
    padding: 12px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-card-description {
    font-size: 12px;
  }
}

/* ============================================
   MOBILE PHONES - 321px to 480px
   ============================================ */

@media only screen and (min-width: 321px) and (max-width: 480px) {

  /* Typography improvements */
  h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  h3 {
    font-size: 19px;
    line-height: 1.4;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Navigation */
  .navcontainer {
    height: 55px;
    padding: 0 10px;
  }

  .navtxt {
    font-size: 10px;
    padding: 3px 6px;
  }

  /* Article content */
  .article_title {
    font-size: 22px;
    padding: 10px;
  }

  .article_bodydiv {
    padding: 10px;
    width: 100%;
  }

  .imagediv {
    height: 200px;
  }

  /* Touch targets */
  .share-button {
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
  }

  .myButton,
  .myButton2,
  .browse-button {
    padding: 14px 24px;
    font-size: 15px;
    min-height: 48px;
  }

  /* Footer */
  .footertext {
    font-size: 10px;
    padding: 8px 10px;
  }

  /* Blog cards */
  .blog-card-content {
    padding: 14px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-description {
    font-size: 13px;
  }
}

/* ============================================
   TABLETS - 481px to 768px
   ============================================ */

@media only screen and (min-width: 481px) and (max-width: 768px) {

  /* Typography */
  h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Navigation */
  .navcontainer {
    height: 65px;
    padding: 0 15px;
  }

  .navtxt {
    font-size: 11px;
    padding: 4px 8px;
  }

  /* Article content */
  .article_title {
    font-size: 26px;
    padding: 12px;
  }

  .article_bodydiv {
    padding: 12px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .imagediv {
    height: 250px;
  }

  /* Touch targets */
  .share-button {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }

  .myButton,
  .myButton2,
  .browse-button {
    padding: 16px 28px;
    font-size: 16px;
    min-height: 48px;
  }

  /* Footer */
  .footertext {
    font-size: 11px;
    padding: 10px 12px;
  }

  /* Blog cards */
  .blog-card-content {
    padding: 16px;
  }

  .blog-card-title {
    font-size: 20px;
  }

  .blog-card-description {
    font-size: 14px;
  }
}

/* Split Layout Styles */
.split-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.notifications-section,
.browse-section {
  flex: 1;
  max-width: 500px;
  padding: 2rem;
  background: var(--surface1);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text1);
}

/* Notifications Slideshow */
.notifications-slideshow {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.notifications-slider {
  position: relative;
  height: 100%;
  transition: transform 0.5s ease;
}

.notification-item {
  position: absolute;
  width: 100%;
  padding: 1rem;
  background: var(--surface2);
  border-radius: 8px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(100%);
}

.notification-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Latest Post Badge */
.latest-badge {
  display: inline-block;
  background: #33bdef;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.latest-post {
  background: linear-gradient(to bottom right, var(--surface2), #f0f5fa);
  border: 1px solid rgba(51, 189, 239, 0.2);
}

.notification-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.notification-content p {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 0.5rem;
}

.notification-link {
  display: inline-block;
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.notification-link:hover {
  text-decoration: underline;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background: #33bdef;
}

/* Browse Section */
.browse-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.browse-description {
  color: var(--text2);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.browse-button {
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  background: linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
  background-color: #33bdef;
  border-radius: 6px;
  border: 1px solid #057fd0;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}

.browse-button:hover {
  background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
  background-color: #019ad2;
}

.browse-button:active {
  position: relative;
  top: 1px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .featurediv {
    height: auto;
    /* Allow height to adjust */
    min-height: 600px;
    padding: 1rem;
  }

  .split-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .notifications-section,
  .browse-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .notifications-slideshow {
    height: 250px;
  }

  .notification-item {
    padding: 0.75rem;
  }

  .notification-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .notification-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .slider-controls {
    right: 5px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

  .browse-section {
    margin-top: 1rem;
  }

  .browse-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .featurediv {
    min-height: 500px;
  }

  .notifications-slideshow {
    height: 200px;
  }

  .split-container {
    padding: 0.5rem;
  }

  .notifications-section,
  .browse-section {
    padding: 0.75rem;
  }
}

/* Latest Post Styles */
.latest-post {
  text-align: center;
  padding: 1rem;
}

.latest-post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.latest-post-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
}

.latest-post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Link Preview Embed Styles */
.link-preview {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 1rem auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.preview-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.preview-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-content {
  padding: 1rem;
  background: #fff;
}

.preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.preview-description {
  font-size: 0.9rem;
  color: var(--text2);
}

/* Copy Link Functionality */
.copy-link-button {
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: rgba(51, 189, 239, 0.2);
  touch-action: manipulation;
}

.copy-success {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  z-index: 1000;
  font-size: 14px;
}

/* Mobile Styles Update */
@media (max-width: 768px) {
  .latest-post {
    padding: 0.75rem;
  }

  .latest-post-image {
    margin-bottom: 0.75rem;
  }

  .copy-link-button {
    padding: 10px;
  }

  .copy-success {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .latest-post {
    padding: 0.5rem;
  }

  .latest-post-image {
    margin-bottom: 0.5rem;
  }
}

/* Search Bar Styles */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.search-input:focus {
  border-color: #33bdef;
  box-shadow: 0 0 0 3px rgba(51, 189, 239, 0.2);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  display: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.search-result {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-result:hover {
  background-color: #f5f5f5;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.2s ease;
  color: #666;
}

.social-link:hover {
  background: #33bdef;
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--text1);
  line-height: 1.4;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--text2);
  margin-bottom: 1rem;
}

.blog-card-description {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .search-container {
    margin: 1rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

@media only screen and (max-width: 768px) {

  /* Header/Nav */
  .navcontainer {
    display: flex;
    flex-direction: row;
    height: 70px;
    width: 100%;
    align-items: center;
    padding: 0 10px;
  }

  .leftnav {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .rightnav {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }

  .navtxtgroup {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    /* Ensured text wraps */
  }

  .navdivtxt {
    padding: 0;
    /* white-space: nowrap; REMOVED */
  }

  .navtxt {
    font-size: 12px;
    padding: 4px 6px;
    border-width: 1px;
    white-space: normal;
    /* Ensured text wraps */
  }

  /* Logo */
  .leftnav svg {
    width: 35px;
    height: 35px;
    margin-left: 0;
  }

  /* Footer */
  footer {
    width: 100%;
    padding: 15px 0;
  }

  .footerdivinside {
    width: 100%;
  }

  .footercontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 0;
  }

  .footercolumn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .footeritem {
    margin: 0;
  }

  .footertext {
    font-size: 12px;
    padding: 4px 6px;
    white-space: normal;
    /* Ensured text wraps */
  }
}

@media only screen and (max-width: 480px) {
  .navcontainer {
    height: 60px;
    padding: 0 5px;
  }

  .leftnav svg {
    width: 30px;
    height: 30px;
  }

  .navtxt {
    font-size: 10px;
    padding: 3px 5px;
  }

  .navtxtgroup {
    gap: 3px;
  }

  .footertext {
    font-size: 10px;
    padding: 3px 5px;
  }
}

/* Social Media Category Pages */
.social-posts-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.social-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-post-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-post-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-platform-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.social-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.social-post-date {
  font-size: 14px;
  color: #666;
}

.social-post-preview {
  display: flex;
  padding: 16px;
  gap: 16px;
}

.social-post-thumbnail {
  width: 180px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.social-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-post-content {
  flex: 1;
}

.social-post-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #666;
}

.social-post-stats {
  display: flex;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Platform-specific colors */
.platform-fb .social-post-header {
  background-color: #f0f2f5;
}

.platform-ig .social-post-header {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.platform-twitter .social-post-header {
  background-color: #1da1f2;
  color: white;
}

.platform-yt .social-post-header {
  background-color: #ff0000;
  color: white;
}

.platform-twitch .social-post-header {
  background-color: #9146ff;
  color: white;
}

.platform-tiktok .social-post-header {
  background-color: #000000;
  color: white;
}

.platform-kick .social-post-header {
  background-color: #53FC18;
  color: white;
}

/* Article List Styling - Base Styles (Canonical Definition) */
.articles__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  margin: 20px auto;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.snippet_image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.snippet_tmb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.snippet_title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #1a1a1a;
}

.snippet_meta {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.snippet_meta span {
  color: #33bdef;
  font-weight: 500;
}

.snippet_body {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.myButton2 {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  align-self: flex-start;
}

/* Mobile Styles for Article List */
@media only screen and (max-width: 768px) {
  .articles__list {
    flex-direction: column;
    height: auto;
    /* Allow height to adjust */
    padding: 15px;
    margin: 15px auto;
    gap: 15px;
    align-items: center;
    max-width: 90%;
  }

  .snippet_image {
    width: 100%;
    /* Ensure it takes full width of its container */
    max-width: 500px;
    /* Cap its max width */
    height: auto;
    /* Allow height to adjust, maintain aspect ratio */
    margin: 0 auto;
  }

  .snippet_tmb {
    width: 100%;
    /* Ensure it takes full width */
    max-width: 500px;
    /* Cap its max width */
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .snippet_title {
    font-size: 20px;
    text-align: center;
  }

  .snippet_meta {
    font-size: 12px;
    text-align: center;
  }

  .snippet_body {
    font-size: 14px;
    text-align: center;
    -webkit-line-clamp: 4;
  }

  .myButton2 {
    font-size: 14px;
    padding: 8px 16px;
    margin: 10px auto 0;
    display: block;
    /* Ensure button is block for centering with margin auto */
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 24px;
    margin: 20px 0;
  }

  .articles__list {
    padding: 10px;
    margin: 10px auto;
    gap: 12px;
    max-width: 95%;
  }

  .snippet_image {
    height: auto;
    /* Ensure height scales */
  }

  .snippet_title {
    font-size: 18px;
  }

  .snippet_meta {
    font-size: 11px;
  }

  .snippet_body {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .myButton2 {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Page Title Styling */
h1 {
  text-align: center;
  margin: 30px 0;
  padding: 0 15px;
}



/* Split Layout Styles */
.split-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.notifications-section,
.browse-section {
  flex: 1;
  max-width: 500px;
  padding: 2rem;
  background: var(--surface1);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text1);
}

/* Notifications Slideshow */
.notifications-slideshow {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.notifications-slider {
  position: relative;
  height: 100%;
  transition: transform 0.5s ease;
}

.notification-item {
  position: absolute;
  width: 100%;
  padding: 1rem;
  background: var(--surface2);
  border-radius: 8px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(100%);
}

.notification-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Latest Post Badge */
.latest-badge {
  display: inline-block;
  background: #33bdef;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.latest-post {
  background: linear-gradient(to bottom right, var(--surface2), #f0f5fa);
  border: 1px solid rgba(51, 189, 239, 0.2);
}

.notification-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.notification-content p {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 0.5rem;
}

.notification-link {
  display: inline-block;
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.notification-link:hover {
  text-decoration: underline;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background: #33bdef;
}

/* Browse Section */
.browse-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.browse-description {
  color: var(--text2);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.browse-button {
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  background: linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
  background-color: #33bdef;
  border-radius: 6px;
  border: 1px solid #057fd0;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}

.browse-button:hover {
  background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
  background-color: #019ad2;
}

.browse-button:active {
  position: relative;
  top: 1px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .featurediv {
    height: auto;
    min-height: 600px;
    padding: 1rem;
  }

  .split-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .notifications-section,
  .browse-section {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .notifications-slideshow {
    height: 250px;
  }

  .notification-item {
    padding: 0.75rem;
  }

  .notification-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .notification-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .slider-controls {
    right: 5px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

  .browse-section {
    margin-top: 1rem;
  }

  .browse-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .featurediv {
    min-height: 500px;
  }

  .notifications-slideshow {
    height: 200px;
  }

  .split-container {
    padding: 0.5rem;
  }

  .notifications-section,
  .browse-section {
    padding: 0.75rem;
  }
}

/* Latest Post Styles */
.latest-post {
  text-align: center;
  padding: 1rem;
}

.latest-post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.latest-post-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
}

.latest-post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Link Preview Embed Styles */
.link-preview {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 1rem auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.preview-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.preview-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-content {
  padding: 1rem;
  background: #fff;
}

.preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.preview-description {
  font-size: 0.9rem;
  color: var(--text2);
}

/* Copy Link Functionality */
.copy-link-button {
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: rgba(51, 189, 239, 0.2);
  touch-action: manipulation;
}

.copy-success {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  z-index: 1000;
  font-size: 14px;
}

/* Mobile Styles Update */
@media (max-width: 768px) {
  .latest-post {
    padding: 0.75rem;
  }

  .latest-post-image {
    margin-bottom: 0.75rem;
  }

  .copy-link-button {
    padding: 10px;
  }

  .copy-success {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .latest-post {
    padding: 0.5rem;
  }

  .latest-post-image {
    margin-bottom: 0.5rem;
  }
}

/* Search Bar Styles */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.search-input:focus {
  border-color: #33bdef;
  box-shadow: 0 0 0 3px rgba(51, 189, 239, 0.2);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  display: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.search-result {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-result:hover {
  background-color: #f5f5f5;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.2s ease;
  color: #666;
}

.social-link:hover {
  background: #33bdef;
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--text1);
  line-height: 1.4;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--text2);
  margin-bottom: 1rem;
}

.blog-card-description {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .search-container {
    margin: 1rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

@media only screen and (max-width: 768px) {

  /* Header/Nav */
  .navcontainer {
    display: flex;
    flex-direction: row;
    height: 70px;
    width: 100%;
    align-items: center;
    padding: 0 10px;
  }

  .leftnav {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .rightnav {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }

  .navtxtgroup {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .navdivtxt {
    padding: 0;
    white-space: nowrap;
  }

  .navtxt {
    font-size: 12px;
    padding: 4px 6px;
    border-width: 1px;
    white-space: nowrap;
  }

  /* Logo */
  .leftnav svg {
    width: 35px;
    height: 35px;
    margin-left: 0;
  }

  /* Footer */
  footer {
    width: 100%;
    padding: 15px 0;
  }

  .footerdivinside {
    width: 100%;
  }

  .footercontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 0;
  }

  .footercolumn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .footeritem {
    margin: 0;
  }

  .footertext {
    font-size: 12px;
    padding: 4px 6px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 480px) {
  .navcontainer {
    height: 60px;
    padding: 0 5px;
  }

  .leftnav svg {
    width: 30px;
    height: 30px;
  }

  .navtxt {
    font-size: 10px;
    padding: 3px 5px;
  }

  .navtxtgroup {
    gap: 3px;
  }

  .footertext {
    font-size: 10px;
    padding: 3px 5px;
  }
}

/* Social Media Category Pages */
.social-posts-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.social-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-post-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-post-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-platform-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.social-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.social-post-date {
  font-size: 14px;
  color: #666;
}

.social-post-preview {
  display: flex;
  padding: 16px;
  gap: 16px;
}

.social-post-thumbnail {
  width: 180px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.social-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-post-content {
  flex: 1;
}

.social-post-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #666;
}

.social-post-stats {
  display: flex;
  gap: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Platform-specific colors */
.platform-fb .social-post-header {
  background-color: #f0f2f5;
}

.platform-ig .social-post-header {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.platform-twitter .social-post-header {
  background-color: #1da1f2;
  color: white;
}

.platform-yt .social-post-header {
  background-color: #ff0000;
  color: white;
}

.platform-twitch .social-post-header {
  background-color: #9146ff;
  color: white;
}

.platform-tiktok .social-post-header {
  background-color: #000000;
  color: white;
}

.platform-kick .social-post-header {
  background-color: #53FC18;
  color: white;
}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
  .social-posts-container {
    padding: 10px;
  }

  .social-post-list {
    gap: 15px;
  }

  .social-post-preview {
    flex-direction: column;
    padding: 12px;
  }

  .social-post-thumbnail {
    width: 100%;
    height: 200px;
  }

  .social-post-header {
    padding: 10px 12px;
  }

  .social-post-title {
    font-size: 15px;
  }

  .social-post-date {
    font-size: 12px;
  }

  .social-post-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .social-post-meta {
    font-size: 12px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 480px) {
  .social-post-thumbnail {
    height: 160px;
  }

  .social-post-stats {
    flex-wrap: wrap;
  }
}

/* Article List Styling - Base Styles */
.articles__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  margin: 20px auto;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.snippet_image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.snippet_tmb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.snippet_title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #1a1a1a;
}

.snippet_meta {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.snippet_meta span {
  color: #33bdef;
  font-weight: 500;
}

.snippet_body {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.myButton2 {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  align-self: flex-start;
}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
  .articles__list {
    flex-direction: column;
    padding: 15px;
    margin: 15px auto;
    gap: 15px;
    align-items: center;
    max-width: 90%;
  }

  .snippet_image {
    width: 100%;
    max-width: 500px;
    height: 200px;
    margin: 0 auto;
  }

  .snippet_tmb {
    width: 100%;
    max-width: 500px;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .snippet_title {
    font-size: 20px;
    text-align: center;
  }

  .snippet_meta {
    font-size: 12px;
    text-align: center;
  }

  .snippet_body {
    font-size: 14px;
    text-align: center;
    -webkit-line-clamp: 4;
  }

  .myButton2 {
    font-size: 14px;
    padding: 8px 16px;
    margin: 10px auto 0;
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 24px;
    margin: 20px 0;
  }

  .articles__list {
    padding: 10px;
    margin: 10px auto;
    gap: 12px;
    max-width: 95%;
  }

  .snippet_image {
    height: 180px;
  }

  .snippet_title {
    font-size: 18px;
  }

  .snippet_meta {
    font-size: 11px;
  }

  .snippet_body {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .myButton2 {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Page Title Styling */
h1 {
  text-align: center;
  margin: 30px 0;
  padding: 0 15px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.lang-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.lang-link:hover {
  background-color: #f0f0f0;
  color: #333;
}

.lang-link.active {
  background-color: #0070f3;
  color: white;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .language-switcher {
    padding: 0.25rem;
    gap: 0.25rem;
  }

  .lang-link {
    font-size: 12px;
    padding: 0.2rem 0.4rem;
  }
}

/* ============================================
   FIXED SIDEBAR ADS (Desktop Wide Screens Only)
   ============================================
   These ads appear in the natural blank margins 
   on screens >1400px where the centered content
   leaves empty space on the sides.
   IMPORTANT: position:fixed ensures ZERO document flow impact
   ============================================ */

/* Base sidebar ad - ALWAYS hidden and out of flow by default */
.sidebar-ad {
  position: fixed !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 160px;
  height: auto;
  max-height: 600px;
  display: none !important;
  /* Hidden by default on all screens */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  /* No interaction when hidden */
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-sizing: border-box;
}

.sidebar-ad--left {
  left: 20px;
  right: auto;
}

.sidebar-ad--right {
  right: 20px;
  left: auto;
}

.sidebar-ad__container {
  width: 160px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
}

/* When visible class is added AND screen is wide enough */
.sidebar-ad--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Only show sidebar ads on VERY wide screens (>1400px) */
@media (min-width: 1400px) {
  .sidebar-ad {
    display: block !important;
  }

  .sidebar-ad--visible {
    visibility: visible;
    opacity: 1;
  }
}

/* Larger screens - more spacing from edge */
@media (min-width: 1600px) {
  .sidebar-ad--left {
    left: 40px;
  }

  .sidebar-ad--right {
    right: 40px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .sidebar-ad--left {
    left: 60px;
  }

  .sidebar-ad--right {
    right: 60px;
  }
}

/* Hide unfilled ads from AdSense */
.sidebar-ad .adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
  visibility: hidden !important;
}

/* ALWAYS hide on small/medium screens */
@media (max-width: 1399px) {

  .sidebar-ad,
  .sidebar-ad--left,
  .sidebar-ad--right {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
}

/* Hide when printing */
@media print {
  .sidebar-ad {
    display: none !important;
  }
}

/* Disable class for specific pages */
.no-sidebar-ads .sidebar-ad {
  display: none !important;
  visibility: hidden !important;
}