
: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);
    }
}


.backgroundParticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 8s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 9s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 15s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 10s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 12s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-delay: 3.5s;
    animation-duration: 11s;
}

@keyframes particle-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);
    }
}


.scanLine {
    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;
    }
}

.pageContainer {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-bg-overlay);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-primary);
}


.pageHeader {
    text-align: center;
    position: relative;
}

.brandLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.brandLogo::before {
    content: '📈';
    font-size: 18px;
}

.heroSection {
    padding: 40px 20px;
    text-align: center;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.heroSection::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; }
}

.heroSection__title {
    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);
}

.heroSection__subTitle {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.heroSection__description {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.textHighlight {
    color: var(--color-primary);
    font-weight: bold;
}


.contentSection__title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-text-primary);
}
.contentSection {
    padding: 10px 10px;
}


.signalImage {
    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;
}

.signalImage img{
    width: 100%;
}



.stocksBanner {
    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);
}

.stocksBanner__text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}


.dashboardScreenshot {
    width: 100%;
    background: var(--color-bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--color-border-primary);
}

.dashboardScreenshot img {
    width: 100%;
}

.chartWrapper {
    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;
}

.chartWrapper__line {
    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;
}

.positionDetails {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.positionDetails__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.positionDetails__label {
    color: var(--color-text-muted);
}

.positionDetails__value {
    color: var(--color-text-primary);
    font-weight: bold;
}

 .buttonTrade {
     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;
 }

 .buttonTrade:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-button-hover);
 }


.analysisGrid {
    display: grid;
    gap: 20px;
}

.analysisCard {
    background: var(--color-bg-secondary);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--color-border-primary);
}

.analysisCard 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);
}

.analysisCard__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.analysisCard__symbol {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
}

.analysisCard__gain {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
}

.analysisCard__date {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 10px;
}

.analysisCard__chart {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.analysisCard__chart::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%);
}

.chartAnnotation {
    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;
}


.reputationSection {
    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;
}

.reputationSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark-overlay);
    z-index: 0;
}

.reputationSection > * {
    position: relative;
    z-index: 1;
}

.reputationSection__quote {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.reputationSection__subTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.reputationSection__rating {
    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;
}


.testimonialsSection {
    background: var(--color-white);
    color: var(--color-text-dark);
    border-radius: 10px;
    padding: 20px;
}

.testimonialItem {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.testimonialItem:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.testimonialItem__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonialItem__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialItem__content {
    flex: 1;
}

.testimonialItem__name {
    font-weight: bold;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.testimonialItem__text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}


.actionSection {
    text-align: center;
    padding: 40px 20px;
}

.actionSection__question {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

 .buttonPrimary {
     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;
 }

 .buttonPrimary:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-button-hover);
 }


.pageFooter {
    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);
}

.pageFooter__links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.pageFooter__links a {
    color: var(--color-primary);
    text-decoration: none;
}

.pageFooter__links a:hover {
    text-decoration: underline;
}

.pageHeader img{
    width: 100%;
}

.stocksBanner__text img{
    width: 100%;
}


.cookieConsentBanner {
    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;
}

.cookieConsentBanner.isHidden {
    display: none;
}

@keyframes slide-up-animation {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookieConsentBanner__content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.cookieConsentBanner__text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.cookieConsentBanner__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookieConsentBanner__text a:hover {
    color: var(--color-primary-light);
}

.cookieConsentBanner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookieButton {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

 .cookieButton--accept {
     background: var(--color-primary);
     color: var(--color-dark);
     box-shadow: var(--shadow-button);
 }

 .cookieButton--accept:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-button-hover);
 }

.cookieButton--decline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.cookieButton--decline: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;
    }

    .particle {
        display: none; 
    }

    .scanLine {
        animation-duration: 8s;
    }

    .pageContainer {
        max-width: 100%;
        box-shadow: none;
    }

    .heroSection__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .heroSection__subTitle {
        font-size: 14px;
    }

    .heroSection__description {
        font-size: 13px;
    }

    .contentSection {
        padding: 20px 15px;
    }

    .contentSection__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .signalImage {
        border-radius: 8px;
    }

    .stocksBanner {
        border-radius: 8px;
    }

    .dashboardScreenshot {
        border-radius: 8px;
    }

    .positionDetails__row {
        font-size: 12px;
    }

    .buttonTrade {
        font-size: 14px;
        padding: 10px;
    }

    .analysisCard {
        border-radius: 8px;
        padding: 12px;
    }

    .analysisCard__symbol {
        font-size: 18px;
    }

    .analysisCard__gain {
        font-size: 12px;
    }

    .analysisCard__date {
        font-size: 11px;
    }

    .analysisCard__chart {
        height: 120px;
    }

    .chartAnnotation {
        font-size: 10px;
        padding: 3px 6px;
    }

    .reputationSection {
        border-radius: 12px;
        padding: 25px 15px;
    }

    .reputationSection__quote {
        font-size: 16px;
    }

    .reputationSection__subTitle {
        font-size: 18px;
    }

    .reputationSection__rating {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .testimonialsSection {
        border-radius: 8px;
        padding: 15px;
    }

    .testimonialItem {
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .testimonialItem__avatar {
        width: 45px;
        height: 45px;
    }

    .testimonialItem__name {
        font-size: 14px;
    }

    .testimonialItem__text {
        font-size: 12px;
    }

    .actionSection {
        padding: 30px 15px;
    }

    .actionSection__question {
        font-size: 14px;
    }

    .buttonPrimary {
        padding: 12px 30px;
        font-size: 14px;
        border-radius: 25px;
        border: none;
    }

    .pageFooter {
        padding: 25px 15px;
        font-size: 10px;
    }

    .pageFooter__links {
        gap: 10px;
        font-size: 11px;
    }

    .chartWrapper {
        height: 150px;
    }

    .cookieConsentBanner {
        padding: 15px;
    }

    .cookieConsentBanner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookieConsentBanner__text {
        font-size: 12px;
        min-width: 100%;
    }

    .cookieConsentBanner__buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookieButton {
        width: 100%;
        padding: 12px;
    }
}


@media (max-width: 480px) {
    .heroSection__title {
        font-size: 24px;
    }

    .heroSection__subTitle {
        font-size: 13px;
    }

    .heroSection__description {
        font-size: 12px;
    }

    .contentSection__title {
        font-size: 18px;
    }

    .reputationSection__rating {
        font-size: 24px;
    }

    .buttonPrimary {
        padding: 10px 25px;
        font-size: 13px;
        border: none;
    }

    .pageFooter__links {
        flex-direction: column;
        gap: 8px;
    }
}
