
:root {
    
    --color-primary: #8b5cf6;
    --color-primary-dark: #7c3aed;
    --color-primary-light: #a78bfa;
    
    
    --color-bg-primary: #0a1628;
    --color-bg-secondary: #1a2332;
    --color-bg-tertiary: #0f1b2e;
    --color-bg-overlay: rgba(10, 22, 40, 0.95);
    --color-bg-dark-overlay: rgba(10, 22, 40, 0.75);
    
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #aaaaaa;
    --color-text-tertiary: #666666;
    --color-text-muted: #888888;
    --color-text-dark: #333333;
    
    
    --color-border-primary: rgba(139, 92, 246, 0.3);
    --color-border-secondary: rgba(139, 92, 246, 0.2);
    --color-border-light: #e0e0e0;
    
    
    --color-accent: #8b5cf6;
    --color-white: #ffffff;
    --color-dark: #0a1628;
    
    
    --shadow-primary: 0 0 50px rgba(139, 92, 246, 0.2);
    --shadow-button: 0 4px 15px rgba(139, 92, 246, 0.4);
    --shadow-button-hover: 0 6px 20px rgba(139, 92, 246, 0.6);
    --shadow-cookie: 0 -4px 20px rgba(139, 92, 246, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--color-border-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: grid-animation 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-animation {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(50px) translateX(50px);
    }
}


body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: orb-float 30s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(90deg);
    }
    50% {
        transform: translate(-5%, 10%) rotate(180deg);
    }
    75% {
        transform: translate(-10%, -5%) rotate(270deg);
    }
}


.gAdsParticleBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gAdsParticleDot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: gAdsParticleDot-rise 8s linear infinite;
}

.gAdsParticleDot:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.gAdsParticleDot:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.gAdsParticleDot:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.gAdsParticleDot:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.gAdsParticleDot:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.gAdsParticleDot:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 9s;
}

.gAdsParticleDot:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 15s;
}

.gAdsParticleDot:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 10s;
}

.gAdsParticleDot:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 12s;
}

.gAdsParticleDot:nth-child(10) {
    left: 95%;
    animation-delay: 3.5s;
    animation-duration: 11s;
}

@keyframes gAdsParticleDot-rise {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 0.4;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) scale(0.5);
    }
}


.gAdsScanLine {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: scan-down 6s linear infinite;
    opacity: 0.4;
    box-shadow: 0 0 20px var(--color-primary);
}

@keyframes scan-down {
    0% {
        top: 0%;
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.gAdsPageShell {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-bg-overlay);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-primary);
}


.gAdsPageHeader {
    text-align: center;
    position: relative;
}

.gAdsBrandLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.gAdsBrandLogo::before {
    content: '📈';
    font-size: 18px;
}

.gAdsHeroSection {
    padding: 40px 20px;
    text-align: center;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.gAdsHeroSection::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: pulse-animation 4s ease-in-out infinite;
}

@keyframes pulse-animation {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.gAdsHeroTitle {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.gAdsHeroSubtitle {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.gAdsHeroDescription {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.gAdsTextAccent {
    color: var(--color-primary);
    font-weight: bold;
}


.gAdsSectionHeading {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-text-primary);
}
.gAdsContentSection {
    padding: 10px 10px;
}


.gAdsSignalImage {
    width: 100%;
    background: var(--color-bg-secondary);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-primary);
    position: relative;
    overflow: hidden;
}

.gAdsSignalImage img{
    width: 100%;
}



.gAdsStockBanner {
    width: 100%;
    background: var(--color-bg-primary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.gAdsStockBannerText {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}


.gAdsDashboardImage {
    width: 100%;
    background: var(--color-bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--color-border-primary);
}

.gAdsDashboardImage img {
    width: 100%;
}

.gAdsChartWrapper {
    width: 100%;
    height: 200px;
    background: var(--color-bg-tertiary);
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.gAdsChartLine {
    width: 90%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 150"><path d="M 0 120 Q 50 80, 100 90 T 200 40 T 300 60" stroke="%238b5cf6" stroke-width="2" fill="none"/></svg>') center/contain no-repeat;
}

.gAdsPositionDetails {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.gAdsPositionRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.gAdsPositionLabel {
    color: var(--color-text-muted);
}

.gAdsPositionValue {
    color: var(--color-text-primary);
    font-weight: bold;
}

 .gAdsTradeCta {
     width: 100%;
     padding: 12px;
     background: var(--color-primary);
     border: none;
     border-radius: 25px;
     color: var(--color-dark);
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
     margin-top: 15px;
     box-shadow: var(--shadow-button);
     transition: transform 0.2s;
 }

 .gAdsTradeCta:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-button-hover);
 }


.gAdsAnalysisGrid {
    display: grid;
    gap: 20px;
}

.gAdsAnalysisCard {
    background: var(--color-bg-secondary);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--color-border-primary);
}

.gAdsAnalysisCard img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
    border: 1px solid var(--color-border-primary);
}

.gAdsAnalysisHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.gAdsAnalysisSymbol {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
}

.gAdsAnalysisBadge {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
}

.gAdsAnalysisDate {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 10px;
}

.gAdsAnalysisChart {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.gAdsAnalysisChart::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: var(--color-primary);
    opacity: 0.3;
    clip-path: polygon(0% 100%, 20% 80%, 40% 90%, 60% 40%, 80% 30%, 100% 20%, 100% 100%, 0% 100%);
}

.gAdsChartAnnotation {
    position: absolute;
    background: var(--color-primary);
    opacity: 0.9;
    color: var(--color-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}


.gAdsProofSection {
    text-align: center;
    background: var(--color-bg-dark-overlay);
    background-image: url('img/Track.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.gAdsProofSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark-overlay);
    z-index: 0;
}

.gAdsProofSection > * {
    position: relative;
    z-index: 1;
}

.gAdsProofQuote {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.gAdsProofSubtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.gAdsProofRating {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    letter-spacing: 2px;
}


.gAdsTestimonialsSection {
    background: var(--color-white);
    color: var(--color-text-dark);
    border-radius: 10px;
    padding: 20px;
}

.gAdsTestimonialCard {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.gAdsTestimonialCard:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.gAdsTestimonialAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.gAdsTestimonialAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gAdsTestimonialBody {
    flex: 1;
}

.gAdsTestimonialName {
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.gAdsTestimonialText {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}


.gAdsActionSection {
    text-align: center;
    padding: 40px 20px;
}

.gAdsActionPrompt {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

 .gAdsPrimaryCta {
     display: inline-block;
     padding: 15px 40px;
     background: var(--color-primary);
     color: var(--color-dark);
     text-decoration: none;
     border: none;
     border-radius: 30px;
     font-size: 16px;
     font-weight: bold;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     box-shadow: var(--shadow-button);
     transition: transform 0.2s;
     cursor: pointer;
 }

 .gAdsPrimaryCta:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-button-hover);
 }


.gAdsFooterSection {
    padding: 30px 20px;
    text-align: center;
    font-size: 11px;
    color: var(--color-text-tertiary);
    line-height: 1.8;
    border-top: 1px solid var(--color-border-secondary);
}

.gAdsFooterLinks {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.gAdsFooterLinks a {
    color: var(--color-primary);
    text-decoration: none;
}

.gAdsFooterLinks a:hover {
    text-decoration: underline;
}

.gAdsPageHeader img{
    width: 100%;
}

.gAdsStockBannerText img{
    width: 100%;
}


.gAdsCookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-overlay);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: var(--shadow-cookie);
    border-top: 2px solid var(--color-primary);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slide-up-animation 0.5s ease-out;
}

.gAdsCookieBanner.isHidden {
    display: none;
}

@keyframes slide-up-animation {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gAdsCookieContent {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.gAdsCookieCopy {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.gAdsCookieCopy a {
    color: var(--color-primary);
    text-decoration: underline;
}

.gAdsCookieCopy a:hover {
    color: var(--color-primary-light);
}

.gAdsCookieControls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gAdsCookieButton {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

 .gAdsCookieAccept {
     background: var(--color-primary);
     color: var(--color-dark);
     box-shadow: var(--shadow-button);
 }

 .gAdsCookieAccept:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-button-hover);
 }

.gAdsCookieDecline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.gAdsCookieDecline:hover {
    background: rgba(139, 92, 246, 0.1);
}


@media (max-width: 768px) {
    body::before {
        background-size: 30px 30px;
        animation-duration: 30s;
    }

    body::after {
        animation-duration: 40s;
    }

    .gAdsParticleDot {
        display: none; 
    }

    .gAdsScanLine {
        animation-duration: 8s;
    }

    .gAdsPageShell {
        max-width: 100%;
        box-shadow: none;
    }

    .gAdsHeroTitle {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .gAdsHeroSubtitle {
        font-size: 14px;
    }

    .gAdsHeroDescription {
        font-size: 13px;
    }

    .gAdsContentSection {
        padding: 20px 15px;
    }

    .gAdsSectionHeading {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .gAdsSignalImage {
        border-radius: 8px;
    }

    .gAdsStockBanner {
        border-radius: 8px;
    }

    .gAdsDashboardImage {
        border-radius: 8px;
    }

    .gAdsPositionRow {
        font-size: 12px;
    }

    .gAdsTradeCta {
        font-size: 14px;
        padding: 10px;
    }

    .gAdsAnalysisCard {
        border-radius: 8px;
        padding: 12px;
    }

    .gAdsAnalysisSymbol {
        font-size: 18px;
    }

    .gAdsAnalysisBadge {
        font-size: 12px;
    }

    .gAdsAnalysisDate {
        font-size: 11px;
    }

    .gAdsAnalysisChart {
        height: 120px;
    }

    .gAdsChartAnnotation {
        font-size: 10px;
        padding: 3px 6px;
    }

    .gAdsProofSection {
        border-radius: 12px;
        padding: 25px 15px;
    }

    .gAdsProofQuote {
        font-size: 16px;
    }

    .gAdsProofSubtitle {
        font-size: 18px;
    }

    .gAdsProofRating {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .gAdsTestimonialsSection {
        border-radius: 8px;
        padding: 15px;
    }

    .gAdsTestimonialCard {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .gAdsTestimonialAvatar {
        width: 45px;
        height: 45px;
    }

    .gAdsTestimonialName {
        font-size: 14px;
    }

    .gAdsTestimonialText {
        font-size: 12px;
    }

    .gAdsActionSection {
        padding: 30px 15px;
    }

    .gAdsActionPrompt {
        font-size: 14px;
    }

    .gAdsPrimaryCta {
        padding: 12px 30px;
        font-size: 14px;
        border-radius: 25px;
        border: none;
    }

    .gAdsFooterSection {
        padding: 25px 15px;
        font-size: 10px;
    }

    .gAdsFooterLinks {
        gap: 10px;
        font-size: 11px;
    }

    .gAdsChartWrapper {
        height: 150px;
    }

    .gAdsCookieBanner {
        padding: 15px;
    }

    .gAdsCookieContent {
        flex-direction: column;
        text-align: center;
    }

    .gAdsCookieCopy {
        font-size: 12px;
        min-width: 100%;
    }

    .gAdsCookieControls {
        width: 100%;
        flex-direction: column;
    }

    .gAdsCookieButton {
        width: 100%;
        padding: 12px;
    }
}


@media (max-width: 480px) {
    .gAdsHeroTitle {
        font-size: 24px;
    }

    .gAdsHeroSubtitle {
        font-size: 13px;
    }

    .gAdsHeroDescription {
        font-size: 12px;
    }

    .gAdsSectionHeading {
        font-size: 18px;
    }

    .gAdsProofRating {
        font-size: 24px;
    }

    .gAdsPrimaryCta {
        padding: 10px 25px;
        font-size: 13px;
        border: none;
    }

    .gAdsFooterLinks {
        flex-direction: column;
        gap: 8px;
    }
}
