:root {
    --primary-color: #FF1A47;
    --secondary-color: #1E1E1E;
    --text-color: #FFFFFF;
    --accent-color: #FF4D6D;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo h1 {
    color: #FF1A47;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF1A47;
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 26, 71, 0.3);
}

.mobile-menu-icon {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: #fff;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 26, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.trust-item i {
    color: #00C853;
    font-size: 1.1rem;
}

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

.party-visual svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 26, 71, 0.3));
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* Features Section */
.features {
    background: var(--card-bg);
    color: var(--text-color);
}

.feature-category {
    margin-bottom: 60px;
}

.feature-category-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 26, 71, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 26, 71, 0.2);
    border-color: #FF1A47;
}

.feature-icon {
    background: linear-gradient(135deg, #FF1A47 0%, #8B5CF6 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Payment Security Section */
.payment-security {
    background: #0a0a0a;
    color: #fff;
}

.payment-flow {
    margin-bottom: 50px;
}

.payment-flow h3 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #FF1A47;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.flow-step {
    background: rgba(255, 26, 71, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 26, 71, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #FF1A47 0%, #8B5CF6 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.flow-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.flow-step p {
    color: #ccc;
}

.payment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.payment-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF1A47;
}

.security-list, .revenue-list {
    list-style: none;
}

.security-list li, .revenue-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.security-list i {
    color: #00C853;
    font-size: 1.1rem;
    margin-top: 2px;
}

.revenue-list i {
    color: #FFD700;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Trust & Safety Section */
.trust-safety {
    background: #111;
    color: #fff;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
.safety-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
        text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
        transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.safety-card i {
    font-size: 2.5rem;
    color: #8B5CF6;
    margin-bottom: 20px;
}

.safety-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.safety-card p {
    color: #ccc;
}

/* How It Works Section */
.how-it-works {
    background: #0a0a0a;
    color: #fff;
}

.how-it-works-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-button {
    background: transparent;
    color: #ccc;
    border: 2px solid rgba(255, 26, 71, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button.active, .tab-button:hover {
    background: #FF1A47;
    color: white;
    border-color: #FF1A47;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #FF1A47;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.step-card {
    background: rgba(255, 26, 71, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 26, 71, 0.3);
    transition: transform 0.3s ease;
}

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

.step-icon {
    background: linear-gradient(135deg, #FF1A47 0%, #8B5CF6 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Business Info Section */
.business-info {
    background: #111;
    color: #fff;
}

.business-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.business-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.business-card:hover {
        transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.business-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FF6B35;
}

.business-card p {
    color: #ccc;
    line-height: 1.6;
}

/* App Features Section */
.app-features {
    background: #0a0a0a;
    color: #fff;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.app-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

.app-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.app-feature i {
    font-size: 2.5rem;
    color: #8B5CF6;
    margin-bottom: 20px;
}

.app-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.app-feature p {
    color: #ccc;
}

/* Party Categories Section */
.party-categories {
    background: #111;
    color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 26, 71, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 26, 71, 0.2);
    border-color: #FF1A47;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.category-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.category-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Legal Pages Section */
.legal-pages {
    background: #0a0a0a;
    color: #fff;
}

.legal-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.legal-tab-button {
    background: transparent;
    color: #ccc;
    border: 2px solid rgba(139, 92, 246, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-tab-button.active, .legal-tab-button:hover {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

.legal-tab-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.legal-tab-content.active {
    display: block;
}

.legal-tab-content h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #8B5CF6;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FF1A47;
}

.legal-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding-left: 20px;
}

.legal-section ul li {
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: #FF1A47;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Contact Section */
.contact {
    background: #111;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.contact-card i {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.contact-card a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #fff;
}

/* Download Section */
.download {
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}

.download-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.download-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(255, 26, 71, 0.2);
    border-color: #FF1A47;
        transform: translateY(-3px);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div {
    text-align: left;
}

.download-btn span {
    font-size: 0.9rem;
    color: #ccc;
    display: block;
}

.download-btn strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 26, 71, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FF1A47;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF1A47;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF1A47;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .how-it-works-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .safety-grid,
    .steps-grid,
    .business-details,
    .app-features-grid,
    .categories-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
} 

.cta-outline {
    background: transparent;
    color: var(--text-color) !important;
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-outline:hover {
    background: var(--primary-color);
}

.launch-note {
    margin-top: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

/* Waitlist form tweaks */
.waitlist-form .form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.waitlist-form input {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.waitlist-form .btn-primary {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 18px;
}
.hp { display:none; }

/* Nav spacing for outlined button */
.nav-links .cta-outline { margin-left: 10px; } 

.hero-buttons .btn-primary i { font-size: 1.2rem; }
.hero .launch-note a { color: #FF6B35; }
@media (max-width: 768px) { .hero .launch-note { font-size: 0.9rem; } } 