:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent: #ff003c;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

.burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

.burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a0a0a"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23ff003c" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ff003c" stroke-width="0.3"/></svg>');
    background-size: cover;
    z-index: -1;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--accent);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ff1a53;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 60, 0.3);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

/* Sections Common Styles */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 60, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

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

.benefit-card p {
    color: var(--text-secondary);
}

/* Services Section */
.services {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.5"/><circle cx="50" cy="70" r="1" fill="%23ffffff" opacity="0.5"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.5"/><circle cx="70" cy="10" r="1" fill="%23ffffff" opacity="0.5"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.5"/><circle cx="40" cy="90" r="2" fill="%23ffffff" opacity="0.5"/><circle cx="90" cy="80" r="1" fill="%23ffffff" opacity="0.5"/></svg>');
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(10, 10, 10, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 0, 60, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 60, 0.5);
    box-shadow: 0 15px 30px rgba(255, 0, 60, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-content {
    padding: 2rem;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "▶";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.service-button {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.service-button:hover {
    background: var(--accent);
    color: var(--text-primary);
}

/* Affiliate Preview Section */
.affiliate-preview {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><polygon points="50,10 60,40 90,40 65,60 75,90 50,70 25,90 35,60 10,40 40,40" fill="%23ff003c" opacity="0.1"/></svg>');
}

.affiliate-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.affiliate-preview-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

/* News Section */
.news {
    background-color: var(--bg-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 0, 60, 0.3);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.news-card:hover h3 {
    color: var(--accent);
}

.news-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.news-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.news-card:hover .news-link i {
    transform: translateX(5px);
}

.news-button-content {
    margin: 30px 0px 0px 0px;
}

.news-button {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
    width: 200px;
    float: right;
}

.news-button:hover {
    background: var(--accent);
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a0a0a"/><path d="M0,20 Q50,0 100,20 L100,80 Q50,100 0,80 Z" fill="%23ff003c" opacity="0.05"/></svg>');
    background-size: cover;
}

.contact-container {
    display: flex;
    justify-content: space-around;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 40%;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 0, 60, 0.2);
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background: var(--bg-secondary);
    padding: 0 0.5rem;
    color: var(--accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ff1a53;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 0, 60, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 2rem;
    gap: 80px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social .footer-social a {
    font-size: 1.7rem;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
    margin-top: 2rem;
    position: relative;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 15s linear infinite;
    color: var(--accent);
    font-weight: 500;
}

.contact-info {
    width: 30%;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    align-items: center;
}

.contact-social {
    background: #1a1a1a;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 10px;
}

.contact-number.footer-social {
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.contact-number.footer-social a {
    font-size: 1.2rem;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 10px 0px;
}

.contact-number.footer-social i {
    font-size: 1.05rem;
}

/* Affiliate Program Specific Styles */
.affiliate-content {
    background-color: var(--bg-secondary);
    padding: 8rem 5% 6rem;
    min-height: calc(100vh - 200px);
}

.affiliate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.affiliate-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
}

.affiliate-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.program-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.level-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 60, 0.2);
    transition: var(--transition);
}

.level-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255, 0, 60, 0.1);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.level-name {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
}

.level-badge {
    background: var(--accent);
    color: var(--text-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin: 1.5rem 0 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

.conditions-list, .rewards-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.conditions-list li, .rewards-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.conditions-list li::before, .rewards-list li::before {
    content: "▶";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.how-it-works {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-primary);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.help-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.help-list li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.help-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.payout-info {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 60, 0.3);
}

.payout-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.payout-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1650px) {
    .service-card h3 {
        min-height: 77px;
    }
}

@media (max-width: 1480px) {
    .hero h1 {
        font-size: 3.33rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
}

@media (max-width: 1320px) {
    .service-price {
        min-height: 92px;
    }
}

@media (max-width: 1270px) {
    .service-price {
        min-height: 92px;
    }

    ul.service-features {
        min-height: 192px;
    }
}

@media (max-width: 1150px) {
    .contact-info {
        width: 100%;
        max-width: 700px;
        margin-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1050px) {
    .service-price {
        min-height: unset;
    }

    ul.service-features {
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .typewriter {
        border-right: 0px;
        animation: unset;
    }

    .service-card h3 {
        min-height: unset;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 0, 60, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
        white-space: wrap;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .affiliate-title {
        font-size: 2.2rem;
    }

    .program-levels {
        grid-template-columns: 1fr;
    }

    .level-card {
        padding: 1.5rem;
    }

    .how-it-works {
        padding: 2rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}