/* sm - SMARTPHONE LANDSCAPE STYLES */ 
@media (min-width: 480px) {
  
  /* ==================== BASE STYLES ==================== */
  
  :root {
    --glow-1: 0 0 6px var(--cn-green), 0 0 18px rgba(0, 245, 212, .35);
    --glow-2: 0 0 6px var(--cn-blue), 0 0 18px rgba(185, 55, 255, .35);
    --antra: #161616;
    --box: #101010;
    --text: #efefef;
    --headline: #ffffff;
    --cn-green: #00f5d4;
    --cn-blue: #b937ff;
    --font-primary: "Rajdhani", sans-serif;
    --font-display: "Silkscreen", monospace;
  }
  
  /* Base Banner */
  .gb-black-week-banner {
    position: relative;
    overflow: visible;
    background: var(--box);
    border: 2px solid var(--cn-green);
    box-shadow: inset 0 0 20px rgba(0, 245, 212, 0.05);
    font-family: var(--font-primary);
    border-radius: 8px;
  }
  
  /* Animated Background Grid */
  .gb-pixel-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  
  .gb-pixel {
    position: absolute;
    background: var(--cn-green);
    opacity: 0;
  }
  
  /* Pixel Animation Staggered */
  .gb-pixel:nth-child(1) { animation: pixelFloat 4s ease-in-out infinite; }
  .gb-pixel:nth-child(2) { animation: pixelFloat 4.5s ease-in-out infinite 0.2s; }
  .gb-pixel:nth-child(3) { animation: pixelFloat 5s ease-in-out infinite 0.4s; background: var(--cn-blue); }
  .gb-pixel:nth-child(4) { animation: pixelFloat 4.2s ease-in-out infinite 0.6s; }
  .gb-pixel:nth-child(5) { animation: pixelFloat 4.8s ease-in-out infinite 0.8s; background: var(--cn-blue); }
  .gb-pixel:nth-child(6) { animation: pixelFloat 4.3s ease-in-out infinite 1s; }
  .gb-pixel:nth-child(7) { animation: pixelFloat 4.6s ease-in-out infinite 1.2s; background: var(--cn-blue); }
  .gb-pixel:nth-child(8) { animation: pixelFloat 4.4s ease-in-out infinite 1.4s; }
  .gb-pixel:nth-child(9) { animation: pixelFloat 4.9s ease-in-out infinite 1.6s; background: var(--cn-blue); }
  .gb-pixel:nth-child(10) { animation: pixelFloat 4.1s ease-in-out infinite 1.8s; }
  
  @keyframes pixelFloat {
    0%, 100% { 
      transform: translateY(0) translateX(0);
      opacity: 0.2;
      filter: drop-shadow(var(--glow-1));
    }
    50% { 
      transform: translateY(-20px) translateX(8px);
      opacity: 0.6;
    }
  }
  
  /* Content */
  .gb-black-week-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  
  .gb-banner-text {
    flex: 1;
  }
  
  /* Badge */
  .gb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cn-green);
    color: var(--box);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: var(--glow-1);
    animation: badgePulse 2s ease-in-out infinite;
  }
  
  .gb-badge span {
    font-size: 18px;
  }
  
  @keyframes badgePulse {
    0%, 100% { 
      transform: scale(1);
      filter: drop-shadow(0 0 6px rgba(0, 245, 212, 0.4));
    }
    50% { 
      transform: scale(1.08);
      filter: drop-shadow(0 0 12px rgba(0, 245, 212, 0.8));
    }
  }
  
  .gb-banner-heading {
    margin: 0 0 12px 0;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--headline);
    line-height: 1.2;
    letter-spacing: 1px;
  }
  
  .gb-category-highlight {
    color: var(--cn-green);
    font-style: normal;
    font-weight: 700;
    animation: categoryGlow 2s ease-in-out infinite;
    text-shadow: var(--glow-1);
  }
  
  @keyframes categoryGlow {
    0%, 100% { 
      text-shadow: 0 0 6px var(--cn-green), 0 0 12px rgba(0, 245, 212, 0.4);
    }
    50% { 
      text-shadow: 0 0 12px var(--cn-green), 0 0 24px rgba(0, 245, 212, 0.6);
    }
  }
  
  .gb-banner-description {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
    font-family: var(--font-primary);
    font-weight: 500;
  }
  
  /* CTA Button Container */
  .gb-button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .gb-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cn-blue);
    color: var(--headline);
    padding: 16px 32px;
    border-radius: 6px;
    border: 2px solid var(--cn-blue);
    font-weight: 700;
    font-family: var(--font-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-2);
    font-size: 13px;
  }
  
  .gb-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: buttonShine 3s infinite;
  }
  
  @keyframes buttonShine {
    0% { transform: translate(-100%, -100%) rotate(0deg); }
    100% { transform: translate(100%, 100%) rotate(0deg); }
  }
  
  .gb-cta-button:hover {
    background: transparent;
    border-color: var(--cn-green);
    color: var(--cn-green);
    transform: translateY(-3px);
    box-shadow: var(--glow-1), 0 8px 20px rgba(0, 245, 212, 0.3);
  }
  
  .gb-cta-button span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .gb-arrow {
    display: inline-block;
    animation: arrowSlide 0.6s ease-in-out infinite;
  }
  
  @keyframes arrowSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
  }
  
  .gb-affiliate-disclaimer {
    font-size: 11px;
    color: rgba(239, 239, 239, 0.6);
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.4;
  }
  
  .gb-affiliate-disclaimer strong {
    color: var(--cn-green);
    font-weight: 600;
  }
  
  /* ==================== FORMAT 1: ABOVE CONTENT ==================== */
  
  .gb-banner-above-content {
    padding: 40px 32px;
    margin: 32px 0 32px 0;
  }
  
  .gb-banner-above-content .gb-pixel {
    width: 4px;
    height: 4px;
  }
  
  .gb-banner-above-content .gb-pixel:nth-child(1) { top: 10%; left: 5%; }
  .gb-banner-above-content .gb-pixel:nth-child(2) { top: 15%; left: 15%; }
  .gb-banner-above-content .gb-pixel:nth-child(3) { top: 8%; left: 25%; }
  .gb-banner-above-content .gb-pixel:nth-child(4) { top: 20%; left: 35%; }
  .gb-banner-above-content .gb-pixel:nth-child(5) { top: 12%; left: 45%; }
  .gb-banner-above-content .gb-pixel:nth-child(6) { top: 18%; left: 55%; }
  .gb-banner-above-content .gb-pixel:nth-child(7) { top: 10%; left: 65%; }
  .gb-banner-above-content .gb-pixel:nth-child(8) { top: 16%; left: 75%; }
  .gb-banner-above-content .gb-pixel:nth-child(9) { top: 14%; left: 85%; }
  .gb-banner-above-content .gb-pixel:nth-child(10) { top: 22%; left: 92%; }
  
  .gb-banner-above-content .gb-badge {
    font-size: 14px;
    margin-top: -50px;
  }
  
  .gb-banner-above-content .gb-banner-heading {
    font-size: 32px;
  }
  
  .gb-banner-above-content .gb-banner-description {
    font-size: 16px;
  }
  
  .gb-banner-above-content .gb-banner-text {
    min-width: 280px;
  }
  
  /* ==================== FORMAT 2: SIDEBAR ==================== */
  
  .gb-banner-sidebar {
    padding: 24px 20px;
    margin: 24px 0;
    max-width: 100%;
  }
  
  .gb-banner-sidebar .gb-pixel {
    width: 3px;
    height: 3px;
  }
  
  .gb-banner-sidebar .gb-pixel:nth-child(1) { top: 15%; left: 10%; }
  .gb-banner-sidebar .gb-pixel:nth-child(2) { top: 20%; left: 25%; }
  .gb-banner-sidebar .gb-pixel:nth-child(3) { top: 10%; left: 40%; }
  .gb-banner-sidebar .gb-pixel:nth-child(4) { top: 25%; left: 55%; }
  .gb-banner-sidebar .gb-pixel:nth-child(5) { top: 18%; left: 70%; }
  .gb-banner-sidebar .gb-pixel:nth-child(6) { top: 30%; left: 85%; }
  .gb-banner-sidebar .gb-pixel:nth-child(7) { top: 60%; left: 15%; }
  .gb-banner-sidebar .gb-pixel:nth-child(8) { top: 70%; left: 35%; }
  .gb-banner-sidebar .gb-pixel:nth-child(9) { top: 65%; left: 60%; }
  .gb-banner-sidebar .gb-pixel:nth-child(10) { top: 75%; left: 80%; }
  
  .gb-banner-sidebar .gb-black-week-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .gb-banner-sidebar .gb-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 12px;
    margin-top: 0;
  }
  
  .gb-banner-sidebar .gb-badge span {
    font-size: 14px;
  }
  
  .gb-banner-sidebar .gb-banner-heading {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .gb-banner-sidebar .gb-banner-description {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  
  .gb-banner-sidebar .gb-banner-text {
    min-width: auto;
    width: 100%;
  }
  
  .gb-banner-sidebar .gb-button-container {
    align-items: stretch;
    width: 100%;
  }
  
  .gb-banner-sidebar .gb-cta-button {
    padding: 12px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  
  .gb-banner-sidebar .gb-affiliate-disclaimer {
    font-size: 10px;
    text-align: center;
  }
  
  /* ==================== FORMAT 3: POPUP ==================== */
  
  /* Popup Overlay */
  .gb-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .gb-popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gb-banner-popup {
    position: relative;
    padding: 40px 32px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
  }
  
  @keyframes popupSlideIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .gb-banner-popup .gb-pixel {
    width: 4px;
    height: 4px;
  }
  
  .gb-banner-popup .gb-pixel:nth-child(1) { top: 5%; left: 8%; }
  .gb-banner-popup .gb-pixel:nth-child(2) { top: 10%; left: 20%; }
  .gb-banner-popup .gb-pixel:nth-child(3) { top: 8%; left: 35%; }
  .gb-banner-popup .gb-pixel:nth-child(4) { top: 15%; left: 50%; }
  .gb-banner-popup .gb-pixel:nth-child(5) { top: 12%; left: 65%; }
  .gb-banner-popup .gb-pixel:nth-child(6) { top: 20%; left: 80%; }
  .gb-banner-popup .gb-pixel:nth-child(7) { top: 75%; left: 10%; }
  .gb-banner-popup .gb-pixel:nth-child(8) { top: 70%; left: 30%; }
  .gb-banner-popup .gb-pixel:nth-child(9) { top: 80%; left: 60%; }
  .gb-banner-popup .gb-pixel:nth-child(10) { top: 75%; left: 85%; }
  
  .gb-banner-popup .gb-badge {
    font-size: 14px;
    margin-top: -50px;
  }
  
  .gb-banner-popup .gb-banner-heading {
    font-size: 28px;
  }
  
  .gb-banner-popup .gb-banner-description {
    font-size: 15px;
  }
  
  .gb-banner-popup .gb-black-week-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  
  .gb-banner-popup .gb-button-container {
    width: 100%;
    align-items: stretch;
  }
  
  .gb-banner-popup .gb-cta-button {
    width: 100%;
    justify-content: center;
  }
  
  /* Close Button */
  .gb-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--cn-blue);
    border: none;
    color: var(--headline);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--glow-2);
    z-index: 10000;
  }
  
  .gb-popup-close:hover {
    background: var(--cn-green);
    color: var(--box);
  }
  
  /* ==================== RESPONSIVE ==================== */
  
  @media (max-width: 768px) {
    .gb-banner-above-content {
      padding: 32px 24px;
    }
    
    .gb-banner-above-content .gb-banner-heading {
      font-size: 24px;
    }
    
    .gb-banner-above-content .gb-banner-description {
      font-size: 15px;
    }
    
    .gb-banner-above-content .gb-black-week-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    
    .gb-banner-above-content .gb-cta-button {
      width: 100%;
      justify-content: center;
    }
    
    .gb-banner-popup {
      max-width: 90%;
      padding: 32px 24px;
    }
    
    .gb-banner-popup .gb-banner-heading {
      font-size: 22px;
    }
  }
  
  @media (max-width: 480px) {
    .gb-banner-above-content {
      padding: 24px 16px;
      margin: 20px 0 32px 0;
    }
    
    .gb-banner-above-content .gb-banner-heading {
      font-size: 20px;
      letter-spacing: 0.5px;
    }
    
    .gb-banner-above-content .gb-banner-description {
      font-size: 14px;
    }
    
    .gb-banner-above-content .gb-badge {
      font-size: 12px;
      padding: 6px 14px;
    }
    
    .gb-banner-above-content .gb-badge span {
      font-size: 16px;
    }
    
    .gb-banner-above-content .gb-cta-button {
      padding: 14px 24px;
      font-size: 12px;
    }
    
    .gb-banner-sidebar {
      padding: 20px 16px;
    }
    
    .gb-banner-sidebar .gb-banner-heading {
      font-size: 16px;
    }
    
    .gb-banner-popup {
      max-width: 95%;
      padding: 24px 16px;
      max-height: 90vh;
    }
    
    .gb-popup-close {
      width: 28px;
      height: 28px;
      font-size: 16px;
    }
  }
  
  
}

