:root {
    --primary: #f012be;     /* Neon Pink */
    --secondary: #01ff70;   /* Neon Cyan/Green */
    --accent: #7fdbff;      /* Electric Blue */
    --bg-dark: #0f0c29;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* --- Utilities --- */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* --- Backgrounds --- */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    filter: saturate(1.2) contrast(1.1);
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.85) 0%, rgba(48, 43, 99, 0.75) 50%, rgba(36, 36, 62, 0.9) 100%);
    z-index: -1;
}

/* --- Layout --- */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.content-inner {
    margin: auto 0;
    width: 100%;
}

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .campaign-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

/* --- Status Banner --- */
.status-banner {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.status-banner h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(240, 18, 190, 0.15);
    border: 1px solid rgba(240, 18, 190, 0.4);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0 0 30px rgba(240, 18, 190, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .hero-image-container {
        margin: 0;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.glow-blob {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    top: -20px;
    left: -20px;
    background: var(--primary);
}

.blob-2 {
    bottom: -20px;
    right: -20px;
    background: var(--accent);
}

/* --- Glass Panel (Form/Success) --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.panel-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* --- Form Elements --- */
.form-group {
    margin-bottom: 24px;
    text-align: left;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(240, 18, 190, 0.2);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

select option {
    background: var(--bg-dark);
    color: white;
}

/* --- Checkbox / Rules --- */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--text-main);
}

/* --- Buttons --- */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #c10098 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(240, 18, 190, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(240, 18, 190, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* --- Success & Share --- */
.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(1, 255, 112, 0.15);
    color: var(--secondary);
    margin-bottom: 24px;
    border: 2px solid rgba(1, 255, 112, 0.3);
}

/* --- Podcast Promo --- */
.podcast-promo {
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(127, 219, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(127, 219, 255, 0.2);
}

.podcast-promo h3 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.podcast-promo p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.podcast-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-color: rgba(127, 219, 255, 0.4);
    color: var(--accent);
}

.podcast-btn:hover {
    background: rgba(127, 219, 255, 0.15);
    color: white;
}

.share-box {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.share-box h3 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 10px;
}

.share-input-group {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Alerts & Toasts --- */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.alert-error {
    background: rgba(255, 65, 54, 0.15);
    border: 1px solid rgba(255, 65, 54, 0.4);
    color: #ff8b85;
}

.toast {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--secondary);
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.modal-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.25rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    white-space: pre-wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Powered By Slot --- */
#wbx-powered-by-slot {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}
