:root {
    --primary-color: #007BFF; /* Electric Blue */
    --secondary-color: #0D1117; /* Near Black */
    --text-color: #F0F6FC; /* Light Grey */
    --background-color: #010409; /* Very Dark Blue/Black */
    --card-background: #161B22;
    --border-color: #30363d;
    --highlight-glow: 0 0 15px rgba(0, 123, 255, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header and Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom, #00224a 0%, var(--background-color) 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

nav {
    width: 100%;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.logo img{
    width: 12vw;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(240, 246, 252, 0.8);
    margin-bottom: 2.5rem;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(90deg, var(--primary-color), #0056b3);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-down { animation: fadeInDown 1s ease-out forwards; opacity: 0; }
.animate-fade-in-up { animation: fadeInUp 1s ease-out 0.3s forwards; opacity: 0; }

/* About Us Section */
.about-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--secondary-color);
}

.about-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(240, 246, 252, 0.8);
    padding-bottom: 50px;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

.how-it-works h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 4rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--card-background);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    max-width: 350px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid var(--background-color);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Who Needs Us Section */
.who-needs-us {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--secondary-color);
}

.who-needs-us h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 4rem;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 350px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: var(--highlight-glow);
}

.highlight-alt {
    color: #38bdf8; /* A lighter blue for variation */
    font-weight: 700;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}

/* Stand Out Section */
.stand-out {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

.stand-out h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
}

.stand-out p {
    font-size: 1.2rem;
    color: rgba(240, 246, 252, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background-color: var(--secondary-color);
}

.testimonials::before, .testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.testimonials::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.testimonials::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-color), transparent);
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 4rem;
}

.testimonial-slider {
    width: 100%;
}

.testimonial-track {
    display: flex;
    /* 5 original cards + 5 clones = 10. Width is card width + margin */
    width: calc(380px * 10); 
    animation: scroll 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 2rem;
    width: 350px;
    margin: 0 15px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card span {
    font-weight: 600;
    color: var(--primary-color);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 5)); }
}

/* Affiliate Section */
.affiliate {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
}

.affiliate h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.affiliate p {
    font-size: 1.2rem;
}

.affiliate a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.copy-text {
    cursor: pointer;
    font-weight: 700;
    border-bottom: 2px dotted #fff;
    transition: background-color 0.2s;
}

.copy-text:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.copy-notification {
    display: none;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

/* Footer */
footer {
    background-color: #010409;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-main {
    flex-basis: 40%;
}

.footer-main h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-button-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button-footer:hover {
    background-color: #0056b3;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-creator {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.creator-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--card-background);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.creator-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-info h4 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.creator-info h4 a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--text-color);
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(240, 246, 252, 0.7);
}

/* Styles for the responsive video section */
.video-trailer-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    /* Animation properties */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.video-trailer-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 960px; /* Maximum width of the video player */
    margin: 0 auto;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    /* Card-like styling */
    border-radius: 24px; /* Curved edges */
    border: 3px solid #007bff; /* Nice blue border */
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2); /* Nice shadow effect */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-main {
        margin-bottom: 2rem;
    }
    .logo img{
        width: 19vw;
    }
}

@media (max-width: 768px) {
    .testimonial-track {
        animation-duration: 60s;
    }
    .testimonials::before, .testimonials::after {
        width: 100px;
    }
    .logo img{
        width: 23vw;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .creator-card {
        flex-direction: column;
    }
    .logo img{
        width: 30vw;
    }
}

