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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeIn 0.6s ease-out;
    text-align: center;
}

/* Founder Badge */
.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212, 175, 87, 0.1);
    border: 1px solid rgba(212, 175, 87, 0.3);
    border-radius: 20px;
    color: #d4af57;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.founder-badge svg {
    width: 14px;
    height: 14px;
}

h1 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 .highlight {
    color: #d4af57;
    position: relative;
}

h2 {
    font-size: 1.25rem;
    color: #a3a3a3;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.5;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-button {
    background: #483AC9;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.01em;
    width: 100%;
}

.cta-button:hover {
    background: #3a2ea3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 58, 201, 0.3);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(72, 58, 201, 0.2);
}

.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Premium Gold Button */
.cta-button-premium {
    background: #d4af57;
    color: #0a0a0a;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(212, 175, 87, 0.3);
}

.cta-button-premium:hover {
    background: #e5c068;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 87, 0.4);
}

.cta-button-premium:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212, 175, 87, 0.3);
}

.cta-button-premium svg {
    flex-shrink: 0;
}

/* Form Styles */
.form-content {
    max-width: 440px;
    margin: 0 auto;
    padding-top: 40px;
}

.form-content h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.form-subtitle {
    color: #a3a3a3;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e5e5e5;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737373;
    transition: color 0.15s ease;
}

.toggle-password:hover {
    color: #a3a3a3;
}

.toggle-password:focus {
    outline: none;
}

.eye-icon {
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: all 0.15s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus {
    outline: none;
    border-color: #483AC9;
    box-shadow: 0 0 0 3px rgba(72, 58, 201, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input:readonly {
    background-color: rgba(255, 255, 255, 0.03);
    color: #a3a3a3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group input:readonly:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group .hint {
    display: block;
    margin-top: 6px;
    color: #737373;
    font-size: 0.8125rem;
    letter-spacing: -0.01em;
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    font-size: 0.875rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.error-message.show {
    display: block;
}

.success-message {
    background-color: rgba(34, 197, 94, 0.1);
    color: #86efac;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    font-size: 0.875rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.success-message.show {
    display: block;
}

/* Form Button */
.form-content .cta-button {
    width: 100%;
    margin-top: 8px;
}

/* Benefits Section */
.benefits-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-title {
    color: #e5e5e5;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(212, 175, 87, 0.05);
    border: 1px solid rgba(212, 175, 87, 0.15);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 87, 0.08);
    border-color: rgba(212, 175, 87, 0.25);
}

.benefit-item svg {
    color: #d4af57;
    flex-shrink: 0;
}

.benefit-item span {
    color: #e5e5e5;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 24px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.125rem;
        margin-bottom: 36px;
    }

    .form-content {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 32px 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1rem;
    }

    .founder-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}
