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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
}

.background-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
}

.background-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.glow {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(128px);
}

.glow-1 {
    top: 0;
    left: 25%;
    background: #fed136;
    animation: pulse 4s ease-in-out infinite;
}

.glow-2 {
    bottom: 0;
    right: 25%;
    background: #3b82f6;
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    color: #fed136;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    animation: pulse 2s ease-in-out infinite;
}

.slot-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    margin-bottom: 60px;
}

.headlines-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.headline-card {
    position: absolute;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.headline-card.centered {
    z-index: 10;
}

.headline-inner {
    position: relative;
    padding: 24px 32px;
    border-radius: 16px;
    border: 2px solid;
    transition: all 0.5s ease;
}

.headline-card.centered .headline-inner {
    border-color: #fed136;
    background: linear-gradient(135deg, rgba(254, 209, 54, 0.1) 0%, rgba(30, 30, 30, 0.8) 100%);
    box-shadow: 0 0 40px rgba(254, 209, 54, 0.4);
}

.headline-card.centered .headline-inner:hover {
    box-shadow: 0 0 60px rgba(254, 209, 54, 0.6);
    transform: scale(1.05);
}

.headline-card:not(.centered) .headline-inner {
    border-color: rgba(100, 100, 100, 0.3);
    background: rgba(30, 30, 30, 0.4);
}

.headline-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    transition: all 0.5s ease;
}

.headline-card.centered .headline-title {
    background: linear-gradient(135deg, #fed136 0%, #f5c518 50%, #fed136 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(254, 209, 54, 0.3);
}

.headline-card:not(.centered) .headline-title {
    color: #666;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 20px;
    height: 20px;
}

.star svg {
    fill: #fed136;
    stroke: #fed136;
}

.review-count {
    color: #fed136;
    font-size: 1.125rem;
    font-weight: 600;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 48px;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    border: 2px solid #fed136;
    border-radius: 9999px;
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(254, 209, 54, 0.5);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 60px rgba(254, 209, 54, 0.8);
}

.btn-secondary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    border: none;
    border-radius: 9999px;
    color: #000;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(254, 209, 54, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    box-shadow: 0 0 40px rgba(254, 209, 54, 0.8);
}

.instructions {
    color: #9ca3af;
    text-align: center;
    max-width: 640px;
    font-size: 1.125rem;
}

.highlight {
    color: #fed136;
    font-weight: 600;
}

.gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to top, #000, transparent);
}

.mouse-guide {
    position: absolute;
    top: 35%;
    right: 15%;
    z-index: 20;
    pointer-events: none;
    animation: bounce 2s ease-in-out infinite;
}

.mouse-guide.hidden {
    display: none;
}

.mouse-icon {
    animation: float 3s ease-in-out infinite;
}

.mouse-icon svg {
    stroke: #fff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.mouse-text {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding: 40px 16px;
    overflow-y: auto;
}

.modal.hidden {
    display: none;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border: 2px solid #fed136;
    border-radius: 24px;
    padding: 32px;
    max-width: 672px;
    width: 100%;
    margin: 0 0 40px 0;
    box-shadow: 0 0 60px rgba(254, 209, 54, 0.6);
}

.modal-large {
    max-width: 1200px;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #fed136;
}

.modal-title {
    color: #fed136;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    padding-right: 48px;
}

.selected-headline {
    color: #fed136;
    font-size: 1.125rem;
    border-left: 4px solid #fed136;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #4a4a00;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fed136;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #fed136;
}

.checkbox-label span {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.checkbox-label:hover span {
    color: #fed136;
}

.link {
    color: #fed136;
    text-decoration: underline;
}

.link:hover {
    color: #f5c518;
}

.text-muted {
    color: #9ca3af;
    font-size: 0.875rem;
}

.error-message {
    padding: 16px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ef4444;
    border-radius: 8px;
    color: #fca5a5;
    margin-bottom: 24px;
}

.error-message.hidden {
    display: none;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    border: 2px solid #fed136;
    border-radius: 12px;
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(254, 209, 54, 0.5);
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    box-shadow: 0 0 60px rgba(254, 209, 54, 0.8);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-footer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 16px;
}

.headlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.headline-grid-item {
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid #fed136;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.headline-grid-item:hover {
    box-shadow: 0 0 40px rgba(254, 209, 54, 0.4);
}

.headline-grid-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.headline-grid-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-actions {
    display: flex;
    justify-content: center;
}

.modal-success {
    text-align: center;
    max-width: 512px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    stroke: #000;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fed136 0%, #f5c518 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.success-text {
    color: #d1d5db;
    font-size: 1.125rem;
}

.success-text .email-highlight {
    color: #fed136;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.25rem;
    }

    .slot-container {
        height: 400px;
    }

    .headline-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .headlines-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 16px 32px;
    }
}
