/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-switch {
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    border: none;
    width: 60px;
    height: 30px;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.theme-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.theme-switch.dark::before {
    transform: translateX(30px);
}

.theme-switch i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: white;
    transition: all 0.3s ease;
}

.theme-switch .fa-sun {
    left: 6px;
    opacity: 1;
}

.theme-switch .fa-moon {
    right: 6px;
    opacity: 0;
}

.theme-switch.dark .fa-sun {
    opacity: 0;
}

.theme-switch.dark .fa-moon {
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #F97316;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.logo i {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #8B5CF6 50%, #F97316 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: float 3s ease-in-out infinite;
    position: relative;
    border: 4px solid #333;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 10px;
    background: #333;
    border-radius: 5px;
    z-index: 10;
}

.phone-screen {
    width: 250px;
    height: 500px;
    background: #f8f9fa;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    border: 3px solid #ddd;
}

.instagram-login {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}

.instagram-logo {
    margin-bottom: 30px;
}

.instagram-logo i {
    font-size: 4rem;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
}

.login-btn {
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.facebook-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: #1877f2;
    cursor: pointer;
}

.facebook-login i {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #F97316; }
    100% { text-shadow: 0 0 20px #F97316, 0 0 30px #8B5CF6; }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-gradient {
    background: linear-gradient(135deg, #000000 0%, #8B5CF6 50%, #F97316 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
    animation: gradientPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.bg-gradient .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

/* Content Box */
.content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F97316;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.highlight {
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    border-radius: 15px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item i {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.benefit-item p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Steps Container */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 1.1rem;
}

/* Timeline Info */
.timeline-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-item i {
    font-size: 1.5rem;
    color: #F97316;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.timeline-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Earning Card */
.earning-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.earning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.earning-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.earning-period {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
}

.earning-description {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-image {
    padding: 20px;
    background: #f8f9fa;
}

.instagram-dashboard {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dashboard-card {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.dashboard-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.views {
    font-size: 0.9rem;
    color: #666;
}

.arrow {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.dashboard-buttons {
    display: flex;
    gap: 10px;
}

.dashboard-btn {
    flex: 1;
    background: #f0f0f0;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dashboard-btn:hover {
    background: #e0e0e0;
}

/* Earning Info Styles */
.earning-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.earning-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.earning-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    border-radius: 15px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.earning-item:hover::before {
    opacity: 1;
}

.earning-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.earning-item i {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.earning-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.earning-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Screenshot styles */
.result-screenshot {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.result-screenshot:hover {
    transform: scale(1.05);
}

/* Dark theme для зображень */
body.dark-theme .result-screenshot {
    border: 2px solid #444444;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
}

.requirement-item i {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.requirement-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.requirement-item p {
    color: #666;
    line-height: 1.5;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-box i {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.warning-box p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #F97316, #8B5CF6);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.feature-item i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: white;
    color: #333;
    pointer-events: auto;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    pointer-events: auto;
    user-select: none;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-answer {
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer .logo {
    color: #F97316;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-item {
        justify-content: center;
    }
    
    .earning-amount {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .benefits-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Dark Theme */
body.dark-theme {
    background-color: #1a1a1a;
    color: #ffffff;
}

body.dark-theme .header {
    background: #000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

body.dark-theme .section {
    background-color: #1a1a1a;
}

body.dark-theme .bg-light {
    background-color: #2a2a2a;
}

body.dark-theme .benefit-item,
body.dark-theme .requirement-item,
body.dark-theme .feature-item,
body.dark-theme .step {
    background: #2a2a2a;
    color: #ffffff;
    border: 2px solid #444444;
}

body.dark-theme .benefit-item p,
body.dark-theme .requirement-item p,
body.dark-theme .feature-item p,
body.dark-theme .step p {
    color: #ffffff;
}

body.dark-theme .benefit-item h3,
body.dark-theme .requirement-item h3,
body.dark-theme .feature-item h3,
body.dark-theme .step h3 {
    color: #ffffff;
}

body.dark-theme .faq-item {
    background: #2a2a2a;
    color: #ffffff;
    border: 2px solid #444444;
}

body.dark-theme .faq-question {
    background: #333333;
    color: #ffffff;
}

body.dark-theme .faq-question h3 {
    color: #ffffff;
}

body.dark-theme .faq-answer {
    color: #ffffff;
}

body.dark-theme .faq-answer p {
    color: #ffffff;
}

body.dark-theme .contact-form {
    background: #2a2a2a;
    color: #ffffff;
    border: 2px solid #444444;
}

body.dark-theme .form-group input,
body.dark-theme .form-group textarea {
    background: #333333;
    border-color: #555555;
    color: #ffffff;
}

body.dark-theme .form-group input:focus,
body.dark-theme .form-group textarea:focus {
    border-color: #F97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

body.dark-theme .footer {
    background: #000000;
}

body.dark-theme .footer p {
    color: #ffffff;
}

body.dark-theme .section-title {
    color: #ffffff;
}

body.dark-theme .large-text {
    color: #F97316;
}

body.dark-theme .highlight {
    color: #F97316;
}

body.dark-theme .earning-description {
    color: #ffffff;
}

body.dark-theme .warning-box {
    background: #2a2a2a;
    border-color: #F97316;
    color: #ffffff;
}

body.dark-theme .warning-box p {
    color: #ffffff;
}

body.dark-theme .timeline-item span {
    color: #ffffff;
}

body.dark-theme .earning-period {
    color: #ffffff;
}

body.dark-theme .result-item {
    background: #2a2a2a;
    border: 2px solid #444444;
}

body.dark-theme .result-image {
    background: #333333;
}

body.dark-theme .instagram-dashboard {
    background: #2a2a2a;
}

body.dark-theme .dashboard-card {
    background: #333333;
}

body.dark-theme .dashboard-card h3 {
    color: #ffffff;
}

body.dark-theme .views {
    color: #cccccc;
}

body.dark-theme .dashboard-btn {
    background: #333333;
    color: #ffffff;
}

body.dark-theme .dashboard-btn:hover {
    background: #444444;
}

body.dark-theme .earning-item {
    background: #2a2a2a;
    border: 2px solid #444444;
}

body.dark-theme .earning-item h3 {
    color: #ffffff;
}

body.dark-theme .earning-item p {
    color: #cccccc;
}

body.dark-theme .timeline-item {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-theme .timeline-item i {
    color: #F97316;
}

body.dark-theme .timeline-item span {
    color: #ffffff;
}

body.dark-theme .timeline-item strong {
    color: #F97316;
}

/* Static section for "Who is this training for" */
.static-section {
    background: linear-gradient(135deg, #000000 0%, #8B5CF6 50%, #F97316 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.static-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
}

.static-section .container {
    position: relative;
    z-index: 2;
}

.static-section .section-title {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.static-section .content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.static-section .large-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F97316;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.static-section .highlight {
    background: linear-gradient(45deg, #F97316, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}
