.gs-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.gs-card {
    position: relative;
    background-color: #0F0F11;
    border: 1px solid #D4AF37;
    border-radius: 16px;
    padding: 40px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px -15px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px -10px rgba(212, 175, 55, 0.3);
}

.gs-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.gs-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8E8E93;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.gs-gold-text {
    color: #D4AF37;
    font-weight: bold;
}

.gs-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.gs-subtitle {
    font-size: 16px;
    color: #A1A1AA;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 500px;
}

.gs-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gs-input-group {
    position: relative;
    flex-grow: 1;
}

.gs-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8E8E93;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.gs-email-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gs-email-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.gs-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.gs-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.gs-feedback {
    margin-top: 20px;
    font-size: 15px;
    color: #D4AF37;
    font-weight: 500;
    animation: fadeIn 0.3s ease forwards;
}

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

@media (max-width: 600px) {
    .gs-form {
        flex-direction: column;
    }
    .gs-input-group, .gs-submit-btn {
        width: 100%;
    }
    .gs-submit-btn {
        justify-content: center;
    }
}
