  :root {  
    --orange-vibrant: #FF8C00;  
    --purple-dark: #8A2BE2;  
    --text-primary: #121212;  
    --text-light: #f0f0f0;  
    --gradient-main: linear-gradient(90deg, var(--orange-vibrant) 0%, var(--purple-dark) 100%);  
    --gradient-reversed: linear-gradient(90deg, var(--purple-dark) 0%, var(--orange-vibrant) 100%);  
    --bg-page: #f9f9f9;  
}

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

body {  
    background-color: var(--bg-page);  
    color: var(--text-primary);  
    line-height: 1.6;  
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}  

a {  
    text-decoration: none;  
    color: inherit;  
}  

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

/* BOTÕES */
.btn-action {  
    display: inline-block;  
    padding: 10px 25px;  
    background: var(--gradient-reversed);  
    color: white;  
    font-weight: 700;  
    border-radius: 5px;  
    transition: all 0.3s ease;  
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.5);   
    text-transform: uppercase;  
}  

.btn-action:hover {  
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.7); 
    transform: translateY(-2px);  
}  

/* ==================================== 
   HEADER
   ==================================== */
.header {
    background: var(--text-primary);
    padding: 12px 5%;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 40px;
}

.logo-container span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9em;
    letter-spacing: 2px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-container2 {
    display: block;
    align-items: center;
    gap: 10px;
}

.logo-container2 img {
    height: 40px;
}

.logo-container2 span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9em;
    letter-spacing: 2px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MENU */
.nav-menu {
    position: absolute;
    left: 10px;
    top: 70px;               
    background: var(--text-primary);
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 3000;
}

.nav-menu.open {
    display: flex;
}

.nav-menu a {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

.nav-menu .btn-action {
    margin-top: 10px;
}

/* ==================================== 
   HERO / BANNER
   ==================================== */
.hero-banner {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px !important; 
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-banner img {  
    width: 100%;  
    height: auto;  
    display: block;  
}  

/* ==================================== 
   BLITZ HEADLINE
   ==================================== */
.blitz-headline {  
    display: flex;  
    background: var(--gradient-reversed);  
    color: white;  
    border-radius: 10px;  
    overflow: hidden;  
    margin: 10px 5% 15px;  
    width: 90% !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);  
}  

.blitz-content {  
    padding: 40px;  
    width: 60%;  
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
}  

.blitz-tag {  
    font-family: 'Bebas Neue', sans-serif;  
    font-size: 1.8em;  
    color: var(--text-light);  
    margin-bottom: 10px;  
}  

.blitz-content h1 {  
    font-family: 'Bebas Neue', sans-serif;  
    font-size: 3.8em;  
    line-height: 1;  
    margin-bottom: 20px;  
    letter-spacing: 3px;  
    color: var(--orange-vibrant); 
    text-shadow: 2px 2px 0 var(--purple-dark);  
}  

.blitz-img {  
    width: 40%;  
    overflow: hidden;  
}  

.blitz-img img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
    transition: transform 0.5s;  
    display: block;
}  

.blitz-headline:hover .blitz-img img {  
    transform: scale(1.05);  
}  

/* ==================================== 
   SECTIONS & GRID
   ==================================== */
.section-title {  
    font-family: 'Bebas Neue', sans-serif;  
    font-size: 3em;  
    letter-spacing: 2px;  
    margin-bottom: 30px;  
    color: var(--purple-dark);  
    border-left: 6px solid var(--orange-vibrant);  
    padding-left: 15px;  
    display: inline-block;  
    margin-left: 5%;
}  

.news-grid {  
    display: grid;  
    grid-template-columns: 2fr 1fr; 
    gap: 40px;  
    width: 90%;
    margin: 0 auto;
    padding: 0 16px;
}  

.main-content {  
    display: grid;  
    grid-template-columns: repeat(2, 1fr);  
    gap: 30px;  
}  

.news-card {  
    background: white;  
    border-radius: 10px;  
    overflow: hidden;  
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);  
    transition: all 0.3s ease;  
    position: relative;  
}  

.news-card::after {  
    content: '';  
    position: absolute;  
    bottom: 0;  
    left: 0;  
    width: 100%;  
    height: 5px;  
    background: var(--gradient-main);  
    transform: scaleX(0);  
    transition: transform 0.4s ease-out;  
    transform-origin: left;  
}  

.news-card:hover { transform: translateY(-5px); }
.news-card:hover::after { transform: scaleX(1); }

.card-img {  
    width: 100%;  
    height: 220px;  
    object-fit: cover;  
}  

.card-content { padding: 20px; }

.card-category {  
    font-size: 0.9em;  
    font-weight: 900;  
    color: var(--purple-dark);  
    text-transform: uppercase;  
}  

.card-content h3 {  
    font-family: 'Bebas Neue', sans-serif;  
    font-size: 1.6em;  
    line-height: 1.2;  
    margin: 5px 0 10px 0;  
    letter-spacing: 0.5px;  
}  

/* SIDEBAR */
.side-content {  
    background-color: white;  
    border-radius: 10px;  
    padding: 20px;  
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);  
    border: 1px solid #eee;  
    height: fit-content;
}  

.side-content h4 {  
    font-family: 'Bebas Neue', sans-serif;  
    font-size: 2.2em;  
    color: var(--orange-vibrant);  
    border-bottom: 3px solid var(--purple-dark);  
    padding-bottom: 10px;  
    margin-bottom: 20px;  
}  

.trend-item {  
    display: flex;  
    align-items: flex-start;  
    padding: 15px 0;  
    border-bottom: 1px dashed #eee;  
}  

.trend-item:last-child { border-bottom: none; }

.trend-number {  
    font-family: 'Bebas Neue', sans-serif;  
    font-size: 3em;  
    font-weight: 900;  
    margin-right: 15px;  
    background: var(--gradient-main);  
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;  
    line-height: 1;  
}  

.trend-item a {  
    font-weight: 700;  
    color: var(--text-primary);  
    transition: color 0.3s;  
}  

.trend-item a:hover { color: var(--purple-dark); }

/* ==================================== 
   CARROSSEL
   ==================================== */
.carousel-section { padding-top: 50px; }

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    padding: 30px;
    background: linear-gradient(90deg, rgba(138,43,226,0.9), rgba(255,140,0,0.85));
    color: white;
    border-top-right-radius: 12px;
    box-shadow: 5px -5px 20px rgba(0,0,0,0.3);
    z-index: 3; 
    pointer-events: none; 
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: 0.25s ease;
}

.carousel-control:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%) scale(1.08);
}

.prev-control { left: 15px; }
.next-control { right: 15px; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10000;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.indicator.active-indicator {
    background: var(--orange-vibrant);
    transform: scale(1.2);
    border: 2px solid var(--purple-dark);
}

/* ==================================== 
   FOOTER
   ==================================== */
footer {
  width: 100%;
  background: linear-gradient(135deg, #121212, #1a1a1a);
  color: #fff;
  margin-top: 80px;
  padding: 55px 20px 40px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF8C00, #8A2BE2, #FF8C00);
  background-size: 300% 300%;
  animation: footerGradient 5s linear infinite;
}

@keyframes footerGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.footer-logo img {
  height: 55px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 8px var(--orange-vibrant));
}

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

.footer-links a {
  color: #bdbdbd;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color .25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #7b2cff, #ff7b00);
  transition: width .3s ease;
}

.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { width: 100%; }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 1.2em;
  color: #fff;
  transition: all .3s ease;
}

.social-icons a:hover { background: var(--orange-vibrant); }

.footer-copy {
  margin-top: 25px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* GRADIENT LINE ANIMATION */
.gradient-line {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF8C00, #8A2BE2, #FF8C00);
    background-size: 300% 300%;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ==================================== 
   DESKTOP OPTIMIZATION (PC)
   ==================================== */
@media (min-width: 1024px) {
    .header {
        height: 72px;
        padding: 0 40px;
    }

    .menu-toggle { display: none; }

    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu a {
        font-size: 0.95rem;
        opacity: 0.8;
        transition: 0.2s ease;
    }

    .nav-menu a:hover { opacity: 1; color: var(--orange-vibrant); }

    .blitz-headline {
        flex-direction: row;
        max-width: 1200px;
        margin: 30px auto 50px;
        border-radius: 14px;
    }

    .blitz-content { width: 56%; padding: 50px; }
    .blitz-content h1 { font-size: 3.1rem; }
    .blitz-img { width: 44%; }

    .news-grid {
        grid-template-columns: 2.6fr 1.2fr;
        gap: 40px;
        align-items: start;
        max-width: 1200px;
    }

    .main-content { grid-template-columns: repeat(2, 1fr); }

    .side-content {
        position: sticky;
        top: 90px;
        padding: 24px;
        border-radius: 14px;
    }

    .stories-wrapper {
        width: 100%;
        margin: 0;
        padding: 10px 0 20px;
    }

    .stories-container {
        justify-content: center;
        padding: 8px 40px;
    }

    .story, .storye { width: 76px; height: 76px; }
}

/* ==================================== 
   MOBILE ADJUSTMENTS
   ==================================== */
@media (max-width: 768px) {
    .header { height: 60px; padding: 10px 4%; }
    .logo-container img { height: 36px; }
    .logo-container span { font-size: 1.6em; }
    .nav-menu { top: 60px; left: 10px; }
    
    .blitz-headline { flex-direction: column; text-align: center; }
    .blitz-content, .blitz-img { width: 100%; }
    .blitz-content h1 { font-size: 2em; }
    
    .news-grid { grid-template-columns: 1fr !important; }
    .main-content { grid-template-columns: 1fr; }
    
    .carousel-slide { height: 340px; }
    .slide-content-overlay { width: 100%; padding: 15px; border-radius: 0; }
}

@media (max-width: 600px) {
    footer { padding: 45px 16px 35px; }
    .footer-links { gap: 16px; }
    .footer-links a { font-size: 0.9rem; }
    .social-icons a { width: 46px; height: 46px; font-size: 1.25em; }
}

/* ====== CONTAINER ====== */
.vote-frame {
  background: linear-gradient(135deg, #ffd966, #ff914d, #d64545, #5c2c06);
  padding: 14px;
  border-radius: 28px;
  max-width: 640px;
  width: 92%;
  margin: 50px auto;
  box-shadow: 0 10px 40px rgba(40, 20, 0, 0.2);
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==================================== 
   Vote Hero
   ==================================== */
.vote-frame {
  background: linear-gradient(90deg, #6fffd6, #5c43ff);
  padding: 12px;
  border-radius: 22px;
  max-width: 980px;
  width: 100%;
  margin: 20px auto;
  box-shadow: 0 8px 30px rgba(15,20,40,0.12);
  font-family: Arial, sans-serif; 
}

.vote-mock {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.vote-hero img {
  width: 100%;         
  height: auto;
  display: block;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.vote-card {
  position: relative;
  margin: -18px 22px 26px 22px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(10,10,10,0.04);
  box-shadow: 0 8px 26px rgba(13,20,40,0.06);
}

.vote-card-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom: 18px;
}

.vote-title {
  font-size:20px;
  font-weight:700;
  color:#111827;
}

.vote-status {
  display:flex;
  align-items:center;
  gap:8px;
  color: #58606b;
  font-size:13px;
  font-weight:600;
}

.vote-dot {
  width:10px;height:10px;border-radius:50%;
  background: #96f3a8;
  box-shadow:0 0 0 6px rgba(150,243,168,0.07);
}

.vote-options {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.vote-btn {
  border-radius: 12px;
  padding: 16px;
  font-size:16px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  border: none;
  outline: none;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 6px 18px rgba(10,10,20,0.04);
  position: relative;
  z-index: 0;
}

.vote-btn:active { transform: translateY(1px) }

.vote-green {
  background: linear-gradient(90deg,#9cf7c6,#6ef5b0);
  color: #052018;
}

.vote-purple {
  background: linear-gradient(90deg,#5b3bff,#2b0db7);
  color: white;
}

.vote-icon {
  width:44px;height:44px;border-radius:10px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.vote-btn:hover {
  z-index: 1;
}

.vote-btn:hover::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 15px;
  background: linear-gradient(90deg, #6fffd6, #5c43ff);
  z-index: -1;
}

/* ==================================== 
   STORIES EM DUPLAS
   ==================================== */

.stories-wrapper {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.stories-container {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  padding: 14px 16px;
  scrollbar-width: none;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

/* ==================================== 
   DUPLA
   ==================================== */

.story-pair {
  display: flex;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1),
              filter 0.3s ease;
  transform-style: preserve-3d;
}

.story-pair:hover {
  transform: translateY(-8px) scale(1.03);
}

.story {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: box-shadow 0.3s ease,
              transform 0.3s ease
}

/* esquerda */
.story.left {
  border: 3px solid #00C79C;
}

/* direita */
.story.right {
  border: 3px solid #FF4FFF;
  margin-left: -3px; 
}

.story-pair:hover .story.left {
  box-shadow: 0 0 14px #00FFCC;
}

.story-pair:hover .story.right {
  box-shadow: 0 0 14px #FF4FFF;
}

/* ==================================== 
   BADGES
   ==================================== */

/* FAZ */
.story.cfaz::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -28px;
  width: 100px;
  height: 90px;
  background: url('https://i.ibb.co/93rGmxZt/Background-Eraser-20240907-212424658.png') no-repeat center/contain;
  pointer-events: none;
  z-index: 5;
}

.story.cpower::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 44px;
  width: 38px;
  height: 90px;
  background: url('https://github.com/VulgoFshow/New-Fshow/blob/main/fotos/pcf2/raiopower.png?raw=true') no-repeat center/contain;
  pointer-events: none;
  z-index: 5;
}

/* ROÇA */
.story.croça::after {
  content: "🔥";
  position: absolute;
  top: 10px;
  right: 45px;
  font-size: 26px;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 5;
}

/* FINAL */
.story.cfinal::after {
  content: "🌟";
  position: absolute;
  top: 10px;
  right: 45px;
  font-size: 26px;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 5;
}

/* LAMP */
.story.clamp::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 60px;
  height: 50px;
  background: url('https://i.ibb.co/4RtNz4gc/Chat-GPT-Image-21-de-out-de-2025-11-33-57-fotor-bg-remover-20251021113422.png') no-repeat center/contain;
  pointer-events: none;
  z-index: 5;
}

/* INCO */
.story.cinco::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -11px;
  width: 43px;
  height: 33px;
  background: url('https://i.ibb.co/fd5gvrfZ/Chat-GPT-Image-26-de-out-de-2025-22-35-43-fotor-bg-remover-20251026223635.png') no-repeat center/contain;
  pointer-events: none;
  z-index: 5;
}

/* ==================================== 
   RESPONSIVO
   ==================================== */

@media (max-width: 768px) {
  .story {
    width: 66px;
    height: 66px;
  }

  .story-pair:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

/* ==================================== 
   ADS
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --ad-bg: rgba(16, 20, 35, 0.88);
  --ad-border: rgba(0, 255, 200, 0.25);
  --ad-glow: rgba(0, 255, 200, 0.35);
  --ad-accent: #00ffd0;
  --ad-text: #ffffff;
  --ad-muted: #9ca3af;
}

.ad-responsive,
.ad-box,
.fshow-slide-ad,
.slide-content,
.slide-box,
.fshow-news-ad,
.news-card {
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}


/* BANNER */
.ad-responsive {
  width: 100%;
  padding: 0 16px;
  margin: 40px auto;
  text-align: center;
}

.ad-box {
  width: 100%;
  max-width: 970px;
  height: 250px;
  margin: auto;
  background: linear-gradient(135deg, #0b1220, #141a2f, #1b2445);
  border: 1px solid var(--ad-border);
  border-radius: 20px;
  color: var(--ad-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px var(--ad-glow);
  transition: all .3s ease;
}

.ad-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--ad-glow);
}

/* Mobile */
@media (max-width: 768px) {
  .ad-box {
    height: 110px;
    border-radius: 16px;
  }
}

/* SLIDE POPUP */
.fshow-slide-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-width: 95%;
  transform: translateX(120%);
  transition: transform .5s cubic-bezier(.77,0,.18,1);
  z-index: 9999;
}

.fshow-slide-ad.active {
  transform: translateX(0);
}

.slide-content {
  background: var(--ad-bg);
  border: 1px solid var(--ad-border);
  border-radius: 20px;
  padding: 20px;
  color: var(--ad-text);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 35px var(--ad-glow);
  position: relative;
}

.slide-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--ad-accent);
  cursor: pointer;
}

.slide-box {
  width: 100%;
  height: 220px;
  margin-top: 10px;
  background: linear-gradient(135deg,#0f172a,#1e293b);
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color: var(--ad-muted);
}

/* NEWS POPUP */
.fshow-adsnews-ad {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  max-width: 95%;
  z-index: 9998;
}

.adsnews-card {
  background: var(--ad-bg);
  border: 1px solid var(--ad-border);
  border-radius: 18px;
  padding: 18px;
  color: var(--ad-text);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px var(--ad-glow);
  position: relative;
}

.adsnews-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.adsnews-text {
  font-size: 13px;
  color: var(--ad-muted);
  line-height: 1.4;
}

.ad-link,
.slide-link,
.news-link {
  display: block;
  text-decoration: none;
}

/* SLIDE DUPLO */
.fshow-slide-ad-top {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 340px;
  max-width: 95%;
  transform: translateY(-120%);
  transition: transform .5s cubic-bezier(.77,0,.18,1);
  z-index: 9999;
}

.fshow-slide-ad-top.active {
  transform: translateY(0);
}

.slide-content-top {
  background: var(--ad-bg);
  border: 1px solid var(--ad-border);
  border-radius: 20px;
  padding: 18px;
  color: var(--ad-text);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 35px var(--ad-glow);
  position: relative;
}

.slide-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Imagens */
.slide-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.slide-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(0,255,200,0.5);
}

/* Botão fechar */
.slide-close-top {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #00ffd0;
  font-size: 18px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 10;
  transition: .2s ease;
}

.slide-close-top:hover {
  background: #00ffd0;
  color: #000;
}

/* Imagens */
.ad-img,
.slide-img,
.news-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.ad-img:hover,
.slide-img:hover,
.news-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px rgba(0,255,200,0.4);
}

.slide-close,
.news-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #00ffd0;
  font-size: 18px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 10;
}

.slide-close:hover,
.news-close:hover {
  background: #00ffd0;
  color: #000;
}
