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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(139, 21, 56, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B1538, #B8336A);
    width: 0%;
    transition: width 0.3s ease;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: #8B1538;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle.ninja-star {
    width: 8px;
    height: 8px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

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

/* Hero Section */
.services-hero {
    
    min-height: 80vh;
    background: linear-gradient(135deg, #FEFCFC 0%, #F5E6E8 50%, #E8B4B8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%238B1538" opacity="0.05"/></svg>') repeat;
    background-size: 80px 80px;
    animation: backgroundMove 25s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(80px) translateY(80px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B1538, #B8336A);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: slideInFromTop 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8B1538, #B8336A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInFromTop 1s ease-out 0.2s both;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    animation: slideInFromBottom 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #fff;
}

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

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

.service-menu {
    background: linear-gradient(135deg, #FEFCFC 0%, #F8F6F7 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 21, 56, 0.1);
}

.service-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 21, 56, 0.05), rgba(184, 51, 106, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-menu:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.2);
}

.service-menu:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B1538, #B8336A);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-menu:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-titles h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B1538;
    margin-bottom: 0.3rem;
}

.ninja-alias {
    font-size: 0.9rem;
    color: #B8336A;
    font-style: italic;
    font-weight: 500;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: #8B1538;
}

.service-pricing {
    background: linear-gradient(135deg, #8B1538, #B8336A);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.85rem;
    opacity: 0.9;
}

.service-results {
    background: rgba(139, 21, 56, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.results-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B1538;
    margin-bottom: 0.5rem;
}

.results-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B1538;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
}

.service-cta {
    width: 100%;
    background: linear-gradient(135deg, #8B1538, #B8336A);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
}

/* Platform Links Section */
.platforms-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F6F7 0%, #FEFCFC 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8B1538, #B8336A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 21, 56, 0.05), rgba(184, 51, 106, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

.platform-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.platform-type {
    font-size: 0.85rem;
    color: #8B1538;
    font-weight: 500;
}

.platform-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.platform-benefits li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.platform-benefits li::before {
    content: '🥷';
    position: absolute;
    left: 0;
}

.platform-stats {
    background: rgba(139, 21, 56, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.stat-label-platform {
    color: #666;
}

.stat-value {
    color: #8B1538;
    font-weight: 600;
}

.platform-cta {
    width: 100%;
    background: linear-gradient(135deg, #8B1538, #B8336A);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.platform-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
    color: white;
    text-decoration: none;
}

/* Marketplace Coming Soon */
.marketplace-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 50%, #8B1538 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    background-size: 120px 120px;
    animation: floatStars 30s linear infinite;
}

@keyframes floatStars {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(120px) translateY(120px); }
}

.marketplace-content {
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B8336A, #E8B4B8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.marketplace-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.preview-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
}

.preview-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #E8B4B8;
}

.preview-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.preview-subtitle {
    font-size: 0.9rem;
    color: #B8336A;
    margin-bottom: 1rem;
}

.preview-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.email-signup {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 3rem auto;
    max-width: 500px;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.signup-btn {
    background: linear-gradient(135deg, #B8336A, #E8B4B8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-menu,
    .platform-card {
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* US Market Specific Styling */
.us-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1f4e79, #c41e3a);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.pricing-usd {
    position: relative;
}

.pricing-usd::after {
    content: '🇺🇸 USD';
    font-size: 0.7rem;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}