.subscribe {
    padding: 4rem 1.5rem;
    background: #000;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(90deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #222;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Glow effect */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.subtitle {
    color: #888;
    font-size: 1.1rem;
}

.formWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
}

.inputGroup {
    display: flex;
    background: #1a1a1a;
    /* slightly lighter than bg */
    padding: 0.4rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: border-color 0.2s;
}

.inputGroup:focus-within {
    border-color: var(--primary);
}

.input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: white;
    outline: none;
}

.btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-hover);
}

.note {
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}

@media (max-width: 480px) {
    .inputGroup {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.8rem;
    }

    .input {
        background: #1a1a1a;
        border-radius: 12px;
        border: 1px solid #333;
        width: 100%;
    }

    .btn {
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .note {
        text-align: right;
        margin-right: 1rem;
    }
}