body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #f0f0f0;
}

header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  padding: 2rem 0;
  text-align: center;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.banner-header {
  background-image: url(Images/Banner2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.55rem 0 1.275rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  min-height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-header .tagline {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    -2px -2px 4px rgba(0, 0, 0, 0.8),
    2px -2px 4px rgba(0, 0, 0, 0.8),
    -2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  max-width: 1000px;
  padding: 0 1rem;
  line-height: 1.2;
}

.banner-header .cta-button {
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: #ff5722;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.banner-header .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,87,34,0.4);
  background-color: #ff7043;
}

.main-nav {
  background: rgba(34, 34, 34, 0.95);
  padding: 0;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.banner-header {
  background-image: url(Images/Banner2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 1rem;
  text-align: center;
  position: relative;
  margin-bottom: 0rem;
  min-height: 250px;
  padding-top: 60px; /* Add padding to account for fixed nav */
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a, .main-nav ul li .dropbtn {
  display: block;
  color: #fff;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
  font-family: inherit;
}

.main-nav ul li a:hover, .main-nav ul li .dropbtn:hover {
  background: #2575fc;
  color: white;
}

.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2d2d2d;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 4;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-content a {
  color: #f0f0f0;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 768px) {
  .banner-header {
    padding: 4rem 0 2rem;
  }
  
  .banner-header .tagline {
    font-size: 1.1rem;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav ul li a, .main-nav ul li .dropbtn {
    padding: 12px 16px;
  }
  
  .dropdown-content {
    min-width: 100%;
    left: 0;
    transform: none;
  }
}

.cta-button {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,87,34,0.4);
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.about-section {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.posts-section {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.post-card {
  background-color: #2d2d2d;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.article-thumbnail {
  flex: 0 0 120px !important;
  border-radius: 8px;
  overflow: hidden;
  height: 120px;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  order: -1;
  align-self: flex-start;
  background-color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.article-thumbnail img:error,
.article-thumbnail img[src=""],
.article-thumbnail img:not([src]) {
  display: none;
}

.article-thumbnail::after {
  content: "📰";
  font-size: 2rem;
  color: #888;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.article-thumbnail:has(img[src]:not([src=""]))::after {
  display: none;
}

.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.post-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: #2575fc;
  text-decoration: none;
  font-weight: bold;
}

.post-title:hover {
  color: #ff5722;
}

.post-date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.patreon-section {
  background: linear-gradient(135deg, #4567b7 0%, #38671f 100%);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
}

.benefit-item {
  background-color: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

footer {
  background-color: #0c0c0c;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}

.site-footer {
  background-color: #0c0c0c;
  color: #f0f0f0;
  padding: 2.5rem 1rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: #ff5722;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-section h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff5722, #2575fc);
  border-radius: 2px;
}

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

.platform-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  background-color: #1e1e1e;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.platform-link.patreon {
  background-color: #f96854;
  border-color: #f96854;
}

.platform-link.spotify {
  background-color: #1DB954;
  border-color: #1DB954;
}

.platform-link.apple {
  background-color: #8a4172;
  border-color: #8a4172;
}

.platform-link.discord {
  background-color: #7289da;
  border-color: #7289da;
}

.platform-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.platform-icon {
  font-size: 1.2rem;
  margin-right: 0.7rem;
}

.platform-name {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #999;
}

@media (max-width: 768px) {
  .platform-links {
    flex-direction: column;
    gap: 1rem;
  }
  .platform-link {
    width: 100%;
    justify-content: center;
  }
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.nav-menu {
  background-color: #1e1e1e;
  padding: 1rem 0;
  text-align: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #2575fc;
}

@media (max-width: 768px) {
  .benefit-item {
    flex-basis: 100%;
  }
}

.about-section {
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: .5rem;
  color: #f0f0f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.about-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2575fc;
  text-shadow: 0 0 10px rgba(37,117,252,0.3);
}

.intro-banner {
  background: linear-gradient(135deg, #2575fc 0%, #ff9800 100%);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(37,117,252,0.15), 0 2px 8px rgba(255,152,0,0.12);
}

.intro-banner h3 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.pixelated {
  font-family: 'Courier New', monospace;
  font-weight: bold;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.highlight {
  color: #ff5722;
  font-weight: bold;
}

.info-card {
  background-color: #2d2d2d;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-title {
  color: #2575fc;
  font-size: 1.4rem;
  margin-top: 0;
  border-bottom: 2px solid rgba(37,117,252,0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  width: 1.8rem;
  display: inline-block;
  text-align: center;
}

.benefit-title {
  font-weight: bold;
  color: #ff9800;
  margin-right: 0.3rem;
}

.benefits-list li a {
  margin: 0 0.2rem;
  text-decoration: none;
  color: #00c6f3;
  transition: color 0.3s ease;
}

.benefits-list li a:hover {
  color: #ff9800;
  text-decoration: underline;
}

.highlight-text {
  font-style: italic;
  border-left: 3px solid #ff5722;
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.feature-box {
  background: linear-gradient(135deg, rgba(255,87,34,0.2) 0%, rgba(255,152,0,0.2) 100%);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
  border: 1px dashed rgba(255,87,34,0.5);
}

.rating {
  font-family: 'Courier New', monospace;
  background: linear-gradient(90deg, #ff9800 0%, #2575fc 100%);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.15em;
  box-shadow: 0 0 8px 2px #2575fc99, 0 0 2px #ff9800;
  text-shadow: 1px 1px 2px #000, 0 0 8px #ff9800cc;
  border: 2px solid #ff9800;
  animation: glow 1.5s infinite alternate;
  letter-spacing: 1px;
}

.cta-container {
  text-align: center;
  margin-top: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,87,34,0.4);
  background-color: #ff9800;
}

@media (max-width: 768px) {
  .about-section {
    padding: 1.5rem;
  }
  .intro-banner h3 {
    font-size: 1.2rem;
  }
}

.engagement-section {
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.engagement-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2575fc;
  text-shadow: 0 0 10px rgba(37,117,252,0.3);
}

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

.feature-card {
  background-color: #2d2d2d;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #ff5722;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: #e0e0e0;
  line-height: 1.6;
}

.testimonials {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.testimonials h3 {
  text-align: center;
  color: #2575fc;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.testimonial {
  background-color: #333;
  border-radius: 8px;
  padding: 1.5rem;
  flex-basis: calc(33.333% - 1rem);
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
}

.testimonial:before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: rgba(255,87,34,0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.author {
  text-align: right;
  color: #ff9800;
  font-weight: bold;
}

.patreon-spotlight {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 15px;
  overflow: hidden;
  padding: 2px;
}

.spotlight-content {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 13px;
  text-align: center;
}

.patreon-spotlight h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.patreon-spotlight p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tier-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tier {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tier.featured {
  background-color: #332940;
  transform: scale(1.05);
  border: 2px solid #6a11cb;
  z-index: 1;
}

.popular-tag {
  background-color: #ff5722;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1px;
}

.tier-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #2575fc;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 1.3rem;
  color: #ff9800;
  margin-bottom: 1rem;
}

.tier-features {
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tier-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.4;
}

.tier-features li:before {
  content: '✓';
  color: #2575fc;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255,87,34,0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,87,34,0.6);
  background-color: #ff7043;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,87,34,0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255,87,34,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,87,34,0);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    flex-basis: 100%;
  }
  .tier-highlights {
    flex-direction: column;
    align-items: center;
  }
  .tier {
    width: 100%;
    max-width: 300px;
  }
  .tier.featured {
    transform: scale(1);
    margin: 1.5rem 0;
  }
} 

body:not(.user-is-tabbing) :focus {
  outline: none;
}
body.user-is-tabbing :focus {
  outline: 2px solid #ff9800;
  outline-offset: 2px;
} 

/* Navigation Bar Styles */
.main-nav {
  background: #222;
  padding: 0 0 0 0;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a, .main-nav ul li .dropbtn {
  display: block;
  color: #fff;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li .dropbtn:hover {
  background: #3366ff;
}
.dropdown {
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2d2d2d;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-content a {
  color: #f0f0f0;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #555;
}

.show {
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}
@media (max-width: 700px) {
  .main-nav ul {
    flex-direction: column;
  }
  .main-nav ul li a, .main-nav ul li .dropbtn {
    padding: 12px 16px;
  }
  .dropdown-content {
    min-width: 100%;
    left: 0;
  }
} 

/* Force iframe content styling for Inoreader feeds */
iframe {
  background-color: #222222 !important;
}

/* Target iframe content for better color consistency */
iframe[src*="inoreader.com"] {
  filter: contrast(1.1) brightness(0.9);
}

/* Additional styling for iframe content */
iframe[src*="inoreader.com"] * {
  color: #FFFFFF !important;
  background-color: #222222 !important;
}

/* Specific styling for text elements in iframe */
iframe[src*="inoreader.com"] a,
iframe[src*="inoreader.com"] span,
iframe[src*="inoreader.com"] div,
iframe[src*="inoreader.com"] p {
  color: #FFFFFF !important;
}

/* Style for links in iframe */
iframe[src*="inoreader.com"] a {
  color: #00c6f3 !important;
}

iframe[src*="inoreader.com"] a:hover {
  color: #1b95f3 !important;
} 

/* --- Animations and Effects --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes glow {
  0% { box-shadow: 0 0 10px 2px #ff9800, 0 0 20px 4px #2575fc; }
  50% { box-shadow: 0 0 30px 8px #ff9800, 0 0 40px 16px #2575fc; }
  100% { box-shadow: 0 0 10px 2px #ff9800, 0 0 20px 4px #2575fc; }
}

.tier, .free-tier {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s both;
}
.tier:hover, .free-tier:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(37,117,252,0.25), 0 2px 8px rgba(255,152,0,0.18);
  z-index: 2;
}
.tier.featured {
  animation: fadeInUp 0.8s 0.4s both, glow 2.5s infinite alternate;
  border: 2.5px solid #ff9800;
}

.cta-button {
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeIn 1.2s 0.5s both;
}
.cta-button:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px #ff9800a0;
}

.intro-banner {
  opacity: 0;
  animation: fadeInUp 1.1s 0.1s both;
}

.testimonials, .testimonial-carousel {
  opacity: 0;
  animation: fadeInUp 1.2s 0.3s both;
}

/* Scroll-to-top button */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  background: linear-gradient(135deg, #2575fc 0%, #ff9800 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  box-shadow: 0 4px 16px #000a;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  opacity: 0.85;
}
#scrollToTopBtn:hover {
  background: linear-gradient(135deg, #ff9800 0%, #2575fc 100%);
  transform: scale(1.12);
  opacity: 1;
}

/* --- Exclusive Gifts Section --- */
.exclusive-gifts-section {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 117, 252, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(37, 117, 252, 0.1);
  animation: fadeInUp 0.8s 0.6s both;
}

.gifts-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #2575fc 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.gifts-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #667;
  margin-bottom: 2rem;
  font-style: italic;
}

.gifts-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gift-item {
  background: linear-gradient(135deg, rgba(37, 117, 252, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(37, 117, 252, 0.1);
}

.gift-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(37, 117, 252, 0.2);
}

.gift-item.featured-gift {
  border: 3px solid #ff9800;
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.2);
}

.gift-item.featured-gift:hover {
  box-shadow: 0 16px 48px rgba(255, 152, 0, 0.3);
}

.gift-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gift-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gift-item:hover .gift-image {
  transform: scale(1.05);
}

.gift-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.gift-details {
  padding: 1.5rem;
}

.gift-details h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #00c6f3;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 198, 243, 0.5), 0 0 20px rgba(0, 198, 243, 0.3);
  letter-spacing: 0.5px;
}

.gift-details p {
  color: white;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.gift-tier-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-tag {
  background: linear-gradient(135deg, #2575fc 0%, #1b95f3 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(37, 117, 252, 0.3);
}

.gifts-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
  border-radius: 15px;
  border: 2px dashed rgba(255, 152, 0, 0.3);
}

.gifts-cta-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 500;
}

.gifts-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gifts-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
  color: white;
  text-decoration: none;
}

/* Mobile responsiveness for gifts section */
@media (max-width: 768px) {
  .gifts-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gifts-title {
    font-size: 2rem;
  }
  
  .gifts-subtitle {
    font-size: 1rem;
  }
  
  .gift-image-container {
    height: 200px;
  }
  
  .gift-details {
    padding: 1rem;
  }
  
  .gift-details h4 {
    font-size: 1.1rem;
  }
  
  .gifts-cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
} 