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

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #121212 0%, #1A1A1A 50%, #121212 100%);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }

  /* 股票网格背景动画 */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(229, 57, 53, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(229, 57, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: adGridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
  }

  @keyframes adGridMove {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(50px, 50px);
    }
  }

  .adWrapper {
    max-width: 475px;
    margin: 0 auto;
    background: #1A1A1A;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  
  .adHeaderBar {
    background: linear-gradient(90deg, #121212 0%, #2C2C2C 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #E53935;
  }

  .adLogo {
    font-size: 18px;
    font-weight: 700;
    color: #E53935;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .adMenu {
    width: 20px;  
    height: 20px;
    cursor: pointer;
  }

  .adMenu svg {
    fill: #FFFFFF;
  }

  
  .adBanner {
    
    padding: 0;
    position: relative;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 3px solid #E53935;
  }


  @keyframes adTickerMove {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .adBannerPattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/static/images/hero-pattern.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    z-index: 1;
  }

  .adBannerContent {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
  }

  .adBadge {
    background: rgba(229, 57, 53, 0.2);
    color: #E53935;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(229, 57, 53, 0.3);

  }

  .adBannerTitle {
    font-size: 32px;
    font-weight: 800;
    color: #E53935;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .adBannerSubtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 400;
  }

  .adAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #E53935;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
    object-fit: cover;

  }

  
  .adMetricsSection {
    background: #1A1A1A;
    padding: 30px 20px;
    position: relative;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    z-index: 20;
  }

  .adMetricsGrid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }

  .adMetricCard {
    flex: 1;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #E53935;
  }

  /* 股票图表线条动画 */
  .adMetricCard::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(229, 57, 53, 0.2) 20%,
      rgba(229, 57, 53, 0.3) 40%,
      rgba(229, 57, 53, 0.2) 60%,
      rgba(229, 57, 53, 0.3) 80%,
      transparent 100%
    );
    clip-path: polygon(
      0% 100%,
      5% 80%,
      10% 90%,
      15% 70%,
      20% 85%,
      25% 75%,
      30% 95%,
      35% 65%,
      40% 80%,
      45% 70%,
      50% 90%,
      55% 75%,
      60% 85%,
      65% 70%,
      70% 95%,
      75% 80%,
      80% 90%,
      85% 75%,
      90% 85%,
      95% 70%,
      100% 100%
    );
    animation: adChartPulse 3s ease-in-out infinite;
    opacity: 0.6;
  }

  @keyframes adChartPulse {
    0%, 100% {
      opacity: 0.4;
      transform: scaleY(1);
    }
    50% {
      opacity: 0.7;
      transform: scaleY(1.1);
    }
  }



  .adMetricNumber {
    font-size: 24px;
    font-weight: 800;
    color: #E53935;
    display: block;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    animation: adNumberGlow 2s ease-in-out infinite;
  }

  @keyframes adNumberGlow {
    0%, 100% {
      text-shadow: 0 0 5px rgba(229, 57, 53, 0.3);
    }
    50% {
      text-shadow: 0 0 15px rgba(229, 57, 53, 0.6), 0 0 25px rgba(229, 57, 53, 0.4);
    }
  }

  .adMetricLabel {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  
  .adInfoSection {
    background: #1A1A1A;
    padding: 0 20px 40px;
    position: relative;
  }

  .adInfoCard {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(229, 57, 53, 0.3);
    position: relative;
    overflow: hidden;
  }


  .adInfoText {
    font-size: 15px;
    color: #E0E0E0;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 400;
  }

  .adDisclaimerText {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
  }

  
  .adTrendsSection {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    padding: 40px 20px;
    position: relative;
  }

  .adSectionHeader {
    text-align: center;
    margin-bottom: 30px;
  }

  .adSectionTitle {
    font-size: 24px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }

  .adSectionTitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #E53935, #FFC107);
    border-radius: 2px;
  }

  .adSectionSubtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    margin: 0 auto;
  }

  .adTrendsGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adTrendCard {
    background: #2C2C2C;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(229, 57, 53, 0.3);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  /* 趋势卡片背景动画 */
  .adTrendCard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    animation: adTrendPulse 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes adTrendPulse {
    0%, 100% {
      transform: scale(0.8);
      opacity: 0.3;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.6;
    }
  }

  .adTrendCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.2);
    border-color: #E53935;
  }

  .adTrendIcon {
    width: 40px;
    height: 40px;
    background: #E53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 18px;
  }

  .adTrendIcon svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
  }

  .adTrendTitle {
    font-size: 16px;
    font-weight: 600;
    color: #E53935;
    margin-bottom: 10px;
  }

  .adTrendDesc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }

  
  .adListSection {
    background: #121212;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #E53935;
  }

  .adListSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #121212 0%, #1A1A1A 50%, #121212 100%);
    z-index: 1;
  }

  /* 股票价格波动线条背景 */
  .adListSection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(229, 57, 53, 0.1) 2px,
        rgba(229, 57, 53, 0.1) 4px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(229, 57, 53, 0.1) 2px,
        rgba(229, 57, 53, 0.1) 4px
      );
    background-size: 40px 40px;
    animation: adListGrid 15s linear infinite;
    z-index: 2;
    pointer-events: none;
  }

  @keyframes adListGrid {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(40px, 40px);
    }
  }

  .adListContent {
    position: relative;
    z-index: 10;
    padding: 0 20px;
  }

  .adListHeader {
    text-align: center;
    margin-bottom: 30px;
  }

  .adListTitle {
    font-size: 22px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 10px;
  }

  .adListSubtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }

  .adListGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

  }

  .adItemCard {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
  }

  /* 股票卡片价格波动效果 */
  .adItemCard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      transparent 0%,
      rgba(229, 57, 53, 0.2) 25%,
      rgba(255, 193, 7, 0.2) 50%,
      rgba(229, 57, 53, 0.2) 75%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    pointer-events: none;
  }

  .adItemCard:hover::after {
    opacity: 1;
    animation: adPriceWave 2s ease-in-out infinite;
  }

  @keyframes adPriceWave {
    0%, 100% {
      transform: scale(1);
      opacity: 0.3;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.5;
    }
  }

  .adItemCard:hover {
    background: rgba(229, 57, 53, 0.1);
    transform: scale(1.02);
  }

  .adItemImage {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #E53935, #FFC107);
    border: 1px solid #E53935;
  }

  .adItemName {
    font-size: 12px;
    font-weight: 600;
    color: #E53935;
    margin-bottom: 2px;
  }

  .adItemCode {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
  }

  
  .adServicesSection {
    background: #1A1A1A;
    padding: 40px 20px;
  }

  .adServicesContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .adServicesRow {
    display: flex;
    gap: 15px;
  }

  .adServiceCard {
    flex: 1;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid #E53935;
    background-clip: padding-box;
    position: relative;
  }

  .adServiceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E53935;
    border-radius: 15px;
    margin: -2px;
    z-index: -1;
    opacity: 0.1;
  }

  .adServiceIcon {
    width: 30px;
    height: 30px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #FFFFFF;
    font-size: 14px;
  }

  .adServiceIcon svg {
    width: 16px;
    height: 16px;
    fill: #FFFFFF;
  }

  .adServiceTitle {
    font-size: 14px;
    font-weight: 600;
    color: #E53935;
    margin-bottom: 8px;
  }

  .adServiceDesc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
  }

  .adLearningForm {
    margin-top: 30px;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #181818 0%, #101010 100%);
    border: 1px solid rgba(229, 57, 53, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .adLearningForm h3 {
    font-size: 18px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 15px;
    text-align: left;
  }

  .adFormNote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.5;
  }

  .adQuestion {
    margin-bottom: 20px;
    text-align: left;
    padding: 18px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border 0.3s ease, opacity 0.3s ease;
  }

  .adQuestionLabel {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .adQuestionLabel strong {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: normal;
    text-transform: none;
  }

  .adChoiceGroup {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
  }

  .adChoiceButton {
    width: 100%;

    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    padding: 11px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .adChoiceLetter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }

  .adChoiceButton:hover {
    border-color: rgba(229, 57, 53, 0.6);
    background: rgba(229, 57, 53, 0.18);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.15);
  }

  .adChoiceButton.is-selected {
    border-color: rgba(229, 57, 53, 0.9);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.35), rgba(229, 57, 53, 0.55));
    box-shadow: 0 12px 28px rgba(229, 57, 53, 0.3);
  }

  .adChoiceButton:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .adQuestion.is-locked {
    opacity: 0.6;
    border-style: dashed;
  }

  .adQuestion.is-hidden {
    display: none;
  }

  .adFormResult {
    margin-top: 10px;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    display: none;
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }

  .adFormResult.is-visible {
    display: flex;
  }

  .adFormResultText {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
  }

  .adBoardSection {
    background: linear-gradient(135deg, #111111 0%, #1C1C1C 100%);
    padding: 40px 20px 50px;
    border-top: 2px solid rgba(229, 57, 53, 0.3);
    border-bottom: 2px solid rgba(229, 57, 53, 0.2);
  }

  .adBoardGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 25px;
  }

  .adBoardCard {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(229, 57, 53, 0.4);
    background: #050505;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    position: relative;
  }

  .adBoardCard img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    filter: saturate(1.05);
  }

  .adBoardCardBody {
    padding: 18px;
  }

  .adBoardCardTitle {
    font-size: 15px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 8px;
  }

  .adBoardCardText {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
  }

  .adVideoCard {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(229, 57, 53, 0.5);
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  }

  .adVideoWrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #000;
    aspect-ratio: 16 / 8;
  }

  .adVideoWrapper::after {
    content: 'Muted · Autoplay';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .adVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .adVideoCaption {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: left;
  }

  .adFormButton {
    align-self: flex-start;
  }

  
  .adAnalysisSection {
    background: linear-gradient(135deg, #121212 0%, #1A1A1A 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #E53935;
  }

  /* 股票图表线条动画 */
  .adAnalysisSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(45deg, transparent 30%, rgba(229, 57, 53, 0.05) 30%, rgba(229, 57, 53, 0.05) 50%, transparent 50%, transparent 80%, rgba(229, 57, 53, 0.05) 80%, rgba(229, 57, 53, 0.05) 100%);
    background-size: 60px 60px;
    animation: adChartLines 25s linear infinite;
    z-index: 1;
    pointer-events: none;
  }

  @keyframes adChartLines {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(60px, 60px);
    }
  }

  .adAnalysisContent {
    text-align: center;
    position: relative;
    z-index: 10;
  }

  .adAnalysisTitle {
    font-size: 20px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 15px;
  }

  .adAnalysisText {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .adAnalysisImage {
    width: 100%;

    border-radius: 15px;
    object-fit: cover;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
  }

  
  .adContactSection {
    background: #E53935;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #E53935;
  }

  .adContactSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px);
    animation: adSlide 20s linear infinite;
  }

  @keyframes adSlide {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0%);
    }
  }

  .adContactContent {
    position: relative;
    z-index: 10;
  }

  .adContactIcon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .adContactTitle {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
  }

  .adContactDesc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .adContactDisclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-style: italic;
  }

  .adContactButton {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #FFFFFF;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .adContactButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #1F1F1F 0%, #3A3A3A 100%);
  }

  
  .adFooter {
    background: #121212;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid #E53935;
  }

  .adFooterHighlight {
    background: #2C2C2C;
    margin: 0 -20px 20px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #E53935;
    border-bottom: 1px solid #E53935;
  }

  .adFooterText {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
  }

  .adFooterCopyright {
    opacity: 0.6;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
  }

  
  .adFadeIn {
    animation: adFadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }

  .adFadeIn:nth-child(1) {
    animation-delay: 0.1s;
  }

  .adFadeIn:nth-child(2) {
    animation-delay: 0.2s;
  }

  .adFadeIn:nth-child(3) {
    animation-delay: 0.3s;
  }

  .adFadeIn:nth-child(4) {
    animation-delay: 0.4s;
  }

  .adFadeIn:nth-child(5) {
    animation-delay: 0.5s;
  }

  .adFadeIn:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes adFadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  
  @media (max-width: 320px) {
    .adBannerTitle {
      font-size: 28px;
    }

    .adMetricsGrid {
      flex-direction: column;
      gap: 10px;
    }

    .adServicesRow {
      flex-direction: column;
    }

    .adBoardGrid {
      grid-template-columns: 1fr;
    }
  }