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

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Heading styles */
h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900 !important; /* Blackest weight */
    font-stretch: expanded; /* Wide */
}

h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900; /* Blackest weight */
    font-stretch: condensed; /* Condensed */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

.header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.price-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: #ff0000;
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    transform: rotate(-15deg);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff0000;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: -1;
}

.price-badge .price {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 2px;
}

.price-badge .intro {
    font-size: 0.6rem;
    line-height: 1;
    opacity: 0.9;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
    to { box-shadow: 0 4px 25px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.3); }
}

.main-content {
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.simple-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 15px;
}

.simple-step {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    color: #ff6b35;
    flex: 1;
    font-size: 0.9rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-it-works {
    margin-bottom: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.step-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
    margin-bottom: 8px;
    color: #ff6b35;
}

.step-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.sample-screenshot {
    width: 100%;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.loom-embed {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    margin: 15px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ff6b35;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

/* Uploadcare widget styling - targeting actual classes */
.uploadcare--widget {
    width: 100% !important;
}

.uploadcare--widget__button {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px dashed rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.uploadcare--widget__button:hover {
    border-color: white !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.uploadcare--widget__button_type_open {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px dashed rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.uploadcare--widget__button_type_open:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
    color: white !important;
}

/* Override all Uploadcare button states */
.uploadcare--widget__button,
.uploadcare--widget__button:focus,
.uploadcare--widget__button:active,
.uploadcare--widget__button:visited {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px dashed rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Custom Audio Player Styling */
audio {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 8px;
    outline: none;
}

audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 8px;
}



audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: white;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.paypal-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.features {
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .left-section {
        max-height: none;
        overflow-y: visible;
    }
}
